3.find -mtine -n(+n):根据文件的更改时间来查找,其中-n代表n天之内的文件,+n
代表n天之前的文件,比如:find / -mtime -1:查找1天内修改
过的文件
4.find -type:查找某一类型的文件linux命令linux命令,后带一些参数:
-d:目录
-p:管道文件
-f:普通文件
-i:符号链接文件
用find命令查找到了文件,输出的方式有2种:
1.find -print:标准输出,比如:find / ‘*.NCT’-print >a.txt,代表将根目录下所
的以nct命名的文件list输入到a.txt中
2.find -exec:对于find命令找到的文件执行该参数所给出的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 {} \。
件,该命令一定要注意{}和\之间和空格,不要遗漏最后的“;”
上一个教程:linux常用命令--开发调试篇