标签:rgs centos 删除 rm -rf gre grep -v 其它 grep 指定
[cqs@centos7 test000123]$ touch a.txt b.txt c.txt方法一:使用!取反
[[cqs@centos7 test000123]$ rm -rf !(a.txt)
[cqs@centos7 test000123]$ ls
a.txt
方法二:使用管道 grep -v取反
[cqs@centos7 test000123]$ ls ./|grep -v a.txt |xargs rm -rf
[cqs@centos7 test000123]$ ls
a.txt
标签:rgs centos 删除 rm -rf gre grep -v 其它 grep 指定
原文地址:https://blog.51cto.com/1929297/2419121