Remove files/folders older than 7 days automatically

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

Related posts:

  1. Check Linux Foldersize I don’t know if there are any utilities out there...

Leave a Reply