Our blog

 

Find Files Modified in the last X Days

If you need to check which files (eg PHP files for example) have been modified within the last few days, you can run this quick command.

CODE:
  1. find . -mtime -36 -iname "*.php" -fprint modded.txt

This will generate a list and save it to a file called modded.txt.

More Reading:

 

Leave a Reply