Articles
Find files in Unix that were modified n days ago
- Details
- Published on Thursday, 01 December 2011 23:00
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