Remove files by date
Topics:
Submitted by pat on Wed, 2007-05-16 16:31
find . -mtime +17 -exec mv {} ../oldfiles/ \; or something like that.
- Log in to post comments
find . -mtime +17 -exec mv {} ../oldfiles/ \; or something like that.