Skip to content

Instantly share code, notes, and snippets.

@thattommyhall
Created June 10, 2011 13:13
Show Gist options
  • Save thattommyhall/1018805 to your computer and use it in GitHub Desktop.
Save thattommyhall/1018805 to your computer and use it in GitHub Desktop.
Remove files older than 7 days from /tmp
find /tmp -mtime +7 -type f -exec rm -rf {} \;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment