find
Find files by name in a directory tree
Primary Syntax
$ find /path -name '*.txt'
#
Example Usage
find . -name '*.log' -mtime -7#
Quick Tips
• Use man find to read the full manual
• Add --help flag for quick options reference
• Combine with | less for paginated output
Submitted by: admin
Added: 2/9/2026