Monday, October 29, 2012

Delete Files Older than 5 days

Ref. http://www.howtogeek.com/howto/ubuntu/delete-files-older-than-x-days-on-linux/

find /path/to/files* -mtime +5 -exec rm {} \;


No comments:

Post a Comment