Powerful command-line utility to search for files and directories based on various criteria
Updated at: March 10, 2025
File Search by Name
The 'find' command lets you search for files by name using various pattern matching options. You can search for exact names, partial matches, use case-insensitive searches, and filter by file extensions.
File Search by Attributes
The find command allows searching for files based on their attributes such as size, permissions, ownership, and timestamps. These criteria help narrow down searches when file names alone aren't sufficient.
Directory-Based Search
The find command provides powerful options to control which directories are searched and how deeply to traverse the directory structure. These options help narrow down search scope and avoid common pitfalls like permission errors or searching across filesystem boundaries.
Logical Operators
The find command supports logical operators to combine multiple search criteria. These operators allow for complex file searches based on multiple conditions, making it possible to create precise and powerful search expressions.
Actions on Found Files
The find command can do more than just locate files - it can also perform actions on found files using the -exec option. This powerful feature allows you to execute commands on each matched file, from simple operations like deletion to complex transformations.
Performance Optimization
When searching large filesystems, find can become slow. These techniques optimize search performance by limiting scope, avoiding unnecessary traversals, and leveraging alternative tools for faster results.
Output Control
The find command offers various ways to control and format its output, making it easier to process found files in scripts or to display results in a more readable format. These options help with handling special characters, counting results, and creating file lists.
Related Cheatsheets