Web Hosting Talk







View Full Version : Linux question


Wilbo
11-04-2002, 09:04 AM
How would I list all files in a directory that have been updated since October 2002?

Wilbo
11-04-2002, 09:51 AM
Ok, everyone was too slow and I had to look it up myself. So much for being lazy.
Here is the command if anydody is interested.

find yourdirectory -mtime -45 -print |more

this will find all files in yourdirectory that have been modified in the last 45 days and print it to the screen, one screen at a time.

Darth
11-04-2002, 10:00 AM
Thanks for that :stickout: