Archive for March, 2009

Remove files/folders older than 7 days automatically

Sunday, March 22nd, 2009

Add this line into crontab, change /home2/backup with your own folder and 7 with numbers of days.

@weekly find /home2/backup -mtime +7 -type d -depth -exec rm -r {} \;
SocialTwist Tell-a-Friend