Quick hint on how to remove directories older than N days

find /backup/ -maxdepth 1 -type d -mtime +7 -exec rm -rf "{}" \;

Given example will remove all subdirectories of directory /backup that are older than 7 days. I use it to remove old backups downloaded from one of my remote servers.