Skip to content

Instantly share code, notes, and snippets.

@shreyansb
Created April 25, 2014 01:52
Show Gist options
  • Save shreyansb/11275498 to your computer and use it in GitHub Desktop.
Save shreyansb/11275498 to your computer and use it in GitHub Desktop.
delete "/tmp/tmp.*" files older than 7 days
find /tmp -name "tmp.*" -mtime +7 -delete
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment