find

在指定目录树下递归查找文件或目录。 更多信息:https://manned.org/find.

find {{指定目录}} -name '{{*.ext}}'

find {{指定目录}} -path '{{**/path/**/*.ext}}' -or -name '{{*pattern*}}'

find {{指定目录}} -type d -iname '{{*lib*}}'

find {{指定目录}} -name '{{*.py}}' -not -path '{{*/site-packages/*}}'

find {{指定目录}} -maxdepth 1 -size {{+500k}} -size {{-10M}}

find {{指定目录}} -name '{{*.ext}}' -exec {{wc -l {} }}\;

find {{指定目录}} -daystart -mtime -{{7}}

find {{指定目录}} -type {{f}} -empty -delete