List new files in Unix/Linux

Closed
Anonymous User - Nov 17, 2008 at 06:34 AM
 Don - Jan 14, 2009 at 10:01 PM
Hello,

I would like to know if there is a command to list recursively all the files in a directory updated after certain date. Thanks very much for your help.

Cheers
Related:

1 response

Check out the find command. You will have to read the man page for "find".

Example: Find and display files last modified les than 90 days ago.

find . -name "*" -mtime -90 -print

Results:

./logout_file
./login_file
./2009cal
8