find -mtime -7
It displays the files , which are modified less than 7 days ago in current directory
It finds the files in current directory, which are modified 5 days ago and whose extension is php.
find . -mtime -5 -type f -name "*.php"
Learn to Develop an iPhone or iPad App in 4 Weeks Learn the latest and greatest markup language in the market with Robin Nixon(HTML & HTML5) Now $29 Only(75% Off)
find -mtime -7 It displays
Thu, 06/10/2010 - 20:36 — Anonymousfind -mtime -7
It displays the files , which are modified less than 7 days ago in current directory
It finds the files in current directory, which are modified 5 days ago and whose extension is php.
find . -mtime -5 -type f -name "*.php"