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




郑重声明:本站内容如果来自互联网及其他传播媒体,其版权均属原媒体及文章作者所有。转载目的在于传递更多信息及用于网络分享,并不代表本站赞同其观点和对其真实性负责,也不构成任何其他建议。