Is there any way to find out changed file after some date in whole project code? Is there any way to find out changed file after some date in whole project code? linux linux

Is there any way to find out changed file after some date in whole project code?


#set timestamp for file    touch --date "2011-12-31" /tmp/foo# Find files newer than 2011/Dec/31, in /some/filesfind /some/files -newer /tmp/foo


Use find command with mtime arguments: Some examples are here or here

For example, list files changed in last 7 days...

find / -type f -mtime -7 

For fine grained search you may try -mmin argument. See an example discussed in another SE site: Find All files older than x minutes