LinuxFiles
find
Searches a directory tree for files matching given criteria.
Syntax
find <path> -name <pattern>
Examples
Find all .log files modified in the last day
find /var/log -name "*.log" -mtime -1Searches a directory tree for files matching given criteria.
find <path> -name <pattern>
Find all .log files modified in the last day
find /var/log -name "*.log" -mtime -1