programming faqs interview questions tech technical educational freshers guide preparation interviews hr telephonic
try another color:
try another fontsize: 60% 70% 80% 90%
Programming FAQs

how to find recently modified files in linux

find -mtime -7 It displays

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"