首页 > 代码库 > linux 正则使用
linux 正则使用
1.rm(ls) :快速删除一些连续的文件(ls和rm一样,这里就是列举了)
[root@node2 test]# ls 1 12 13 2 3 4 [root@node2 test]# rm -rf 12 [root@node2 test]# ls 1 13 2 3 4 [root@node2 test]# touch 12 [root@node2 test]# ls 1 12 13 2 3 4 [root@node2 test]# rm -rf [12] 只删除了1,2相当于枚举 [root@node2 test]# ls 12 13 3 4 [root@node2 test]# touch 1 [root@node2 test]# touch 2 [root@node2 test]# ls 1 12 13 2 3 4 [root@node2 test]# rm -rf {12,[12]} 删除了12,1,2 [root@node2 test]# ls 13 3 4 [root@node2 test]# ls 1 12 13 2 3 4 [root@node2 test]# rm -rf 1[2-3] 效果和rm -rf 1[23];rm -rf 1[2,3]一样 删除12,13 [root@node2 test]# ls 1 2 3 4
linux 正则使用
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。