cPanel/WHM Cron: Delete Backups Older Than 30 Days Posted on March 20, 2017 by David Kryzaniak As root crontab -e and add: 4 12 * * * /usr/bin/find /backup/20* -mtime +30 -delete Explanation: 4 12 5 * * At 12:04pm on the 5th of every month /usr/bin/find /backup/20* Find directories in /backup/ that begin with “20” Read more ›