Quantcast
Viewing all articles
Browse latest Browse all 1863

Re: Automatically delete files over one week old

Create a cron to run once a day with this:
# sudo crontab -e

and then put this in:

* 22 * * * test > find /path/to/files* -mtime +7 -exec rm {} \;

This fires off daily at 10PM based on the server time.

Viewing all articles
Browse latest Browse all 1863

Trending Articles