Articles

Find files in Unix that were modified n days ago

To find all PHP files that were modified on a linux server in the last 7 days you can do the following

find . -mtime -7 -name "*.php" -print