删除文件夹下除了某个文件之外的所有文件或文件夹

来源:互联网 发布:三菱plc编程软件win10 编辑:程序博客网 时间:2024/04/28 13:03
[root@localhost test]# mkdir admin 
[root@localhost test]# mkdir hh
[root@localhost test]# touch f1
[root@localhost test]# touch f2
[root@localhost test]# ls
admin  f1  f2  hh

方法1:find . -maxdepth 1 -not -name 'admin' -exec rm -rf '{}' ';'


方法2:ls | grep -v admin | xargs  rm -rf
0 0
原创粉丝点击