How to delete files older than x days

  bash, linux
cd /my/directory

# remove files that are older than 7 days
find . -maxdepth 1 -mtime +7 -exec rm -rf {} \;