Skip to content

Instantly share code, notes, and snippets.

@mazuhl
Created June 1, 2012 11:12
Show Gist options
  • Save mazuhl/2851284 to your computer and use it in GitHub Desktop.
Save mazuhl/2851284 to your computer and use it in GitHub Desktop.
Archive and remove files older than X days
cd /your/directory
/usr/bin/find *.csv -mtime +7 | gzip > /your/directory/backups/files_`date "+%Y-%m-%d"`.gz
/usr/bin/find *.csv -mtime +7 -delete
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment