How To Search Files on Linux

Couple commands to make your Linux file searching life easier: Find the text inside all files of /var/www/html/ directory: grep "search_term" /var/www/html/*.* Find all files in /var/www/html/ directory created within...

Couple commands to make your Linux file searching life easier:

Find the text inside all files of /var/www/html/ directory: grep "search_term" /var/www/html/.

Find all files in /var/www/html/ directory created within last (x) days: find /var/www/html -mtime -x -print