?linux面試題:刪除一個目錄下的所有文件,但保留一個指定文件~~~
面試題:刪除一個目錄下的所有文件,但保留一個指定文件
解答:
假設(shè)這個目錄是/xx/,里面有file1,file2,file3..file10 十個文件
[root@oldboyxx]# touch file{1..10}
[root@oldboyxx]# ls
file1 file10 file2 file3 file4 file5 file6 file7 file8 file9
方法一:find
[root@oldboyxx]# ls
file1 file10 file2 file3 file4 file5 file6 file7 file8 file9
[root@oldboyxx]# find /xx -type f ! -name "file10"|xargs rm -f
[root@oldboyxx]# ls
file10
[root@oldboyxx]# find /xx -type f ! -name "file10" -exec rm -f {} \;
[root@oldboy xx]#ls
file10
這兩種一個通過xargs傳參,一個通過find的-exec執(zhí)行命令參數(shù)來完成,都算作find吧
方法二:rsync
[root@oldboyxx]# ls
file1 file10 file2 file3 file4 file5 file6 file7 file8 file9
[root@oldboyxx]# rsync -az --delete --exclude "file10" /null/ /xx/
[root@oldboyxx]# ls
file10
老男孩老師點評:此法為錦上添花,加分項!
方法三:開啟bash的extglob功能(此功能的作用就是用rm!(*jpg)這樣的方式來刪除不包括號內(nèi)文件的文件)
[root@oldboyxx]# shopt -s extglob
[root@oldboyxx]# ls
file1 file10 file2 file3 file4 file5 file6 file7 file8 file9
[root@oldboyxx]# rm -f !(file10)
[root@oldboyxx]# ls
file10
從運維角度,任何刪除性的操作都應(yīng)該事先備份后在執(zhí)行或者確認(rèn)有備份存在。