find
البحث عن الملفات أو المُجَلَّدات داخل فروع مُجَلَّد، بشكل متكرر. لمزيد من التفاصيل: https://manned.org/find.
find {{root_path}} -name '{{*.ext}}'
find {{root_path}} -path '{{*/path/*/*.ext}}' -or -name '{{*pattern*}}'
find {{root_path}} -type d -iname '{{*lib*}}'
find {{root_path}} -name '{{*.py}}' -not -path '{{*/site-packages/*}}'
find {{root_path}} -maxdepth 1 -size {{+500k}} -size {{-10M}}
{}
داخل الأمر للوصول إلى اسم الملف):find {{root_path}} -name '{{*.ext}}' -exec {{wc -l}} {} \;
find {{root_path}} -daystart -mtime {{-1}} -exec {{tar -cvf archive.tar}} {} \+
find {{root_path}} -type {{f|d}} -empty -delete -print