Search and filtersLinux CLI
find
Traverse directories to locate files by name, size, or metadata.
Command
find . -name "*.log"
Example usage
Search recursively by filename glob or modification time.
find . -name "*.log"
find /var/log -type f -mtime -1
Related tags
Search and filtersshellprocessnetworking