[[email protected] test000123]$ touch a.txt b.txt c.txt
[[email protected] test000123]$ ls
a.txt b.txt c.txt
方法一:使用!取反
[[[email protected] test000123]$ rm -rf !(a.txt)
[[email protected] test000123]$ ls
a.txt
方法二:使用管道 grep -v取反
[[email protected] test000123]$ ls ./|grep -v a.txt |xargs rm -rf
[[email protected] test000123]$ ls
a.txt
原文地址:https://blog.51cto.com/1929297/2419121
时间: 2024-10-14 22:56:54