find指令
Posted lixiangfu
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了find指令相关的知识,希望对你有一定的参考价值。
一,删除特定后缀名文件
find -name "*.s" -exec rm -f \;
#查看目录下面以crond结束的文件,并使用file指令查看其属性
find . -name ‘*crond‘ -exec file \;
\;是一个整体,代表结束这个指令
2, find -maxdepth
指名查找最大深度
3,find - type f or d
指名文件类型
以上是关于find指令的主要内容,如果未能解决你的问题,请参考以下文章