Skip to content

Instantly share code, notes, and snippets.

@leonardehrenfried
Created January 18, 2012 08:51
Show Gist options
  • Save leonardehrenfried/1632046 to your computer and use it in GitHub Desktop.
Save leonardehrenfried/1632046 to your computer and use it in GitHub Desktop.
Deleting files older than 6 months
find ./ -type f -mtime +180 -exec rm {} \;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment