3.find -mtine -n(+n):根據(jù)文件的更改時間來查找,其中-n代表n天之內(nèi)的文件,+n
代表n天之前的文件,比如:find / -mtime -1:查找1天內(nèi)修改
過的文件
4.find -type:查找某一類型的文件linux命令linux命令,后帶一些參數(shù):
-d:目錄
-p:管道文件
-f:普通文件
-i:符號鏈接文件
用find命令查找到了文件,輸出的方式有2種:
1.find -print:標(biāo)準(zhǔn)輸出,比如:find / ‘*.NCT’-print >a.txt,代表將根目錄下所
的以nct命名的文件list輸入到a.txt中
2.find -exec:對于find命令找到的文件執(zhí)行該參數(shù)所給出的shell命令,比如:
find . -type f -name '*.txt' -exec sed -i "s/{find}/{replace}/g" {} 。$ git rm test.txt rm 'test.txt' $ git commit -m "remove test.txt" [master d17efd8] remove test.txt1 file changed, 1 deletion(-)delete mode 100644 test.txt。\svn 刪除所有的 .svn文件find . -name .svn -type d -exec rm -fr {} \。
件,該命令一定要注意{}和\之間和空格,不要遺漏最后的“;”