Skip to content

Instantly share code, notes, and snippets.

@dmitrinesterenko
Created February 10, 2015 16:03
Show Gist options
  • Save dmitrinesterenko/1eff031f5cc50fed6407 to your computer and use it in GitHub Desktop.
Save dmitrinesterenko/1eff031f5cc50fed6407 to your computer and use it in GitHub Desktop.
Do something to files that are x days old
find /path/to/folder -mtime +2 -exec rm -f {} \;
find /path/to/folder -mtime +2 -exec custom_command.sh {} \;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment