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.
# 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.