DZone Snippets is a public source code repository. Easily build up your personal collection of code snippets, categorize them with tags / keywords, and share them with the world
Search For Files Modified The Last ... Days
Searches for files modified up to 4 days ago. Change the 4 to whatever you desire.
find ./ -type f -mtime -4 -exec ls -al {} \;






Comments
Snippets Manager replied on Thu, 2006/06/08 - 12:19pm
find ./ -type f -mtime -60 ! -mtime -30 -exec ls -la {} \;