Skip to content

Instantly share code, notes, and snippets.

@jheth
Created June 29, 2015 16:15
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save jheth/d49e6a8d010cd700d5d7 to your computer and use it in GitHub Desktop.
Save jheth/d49e6a8d010cd700d5d7 to your computer and use it in GitHub Desktop.
Delete Folders older than 30 days
find . -maxdepth 1 -type d -ctime +30 -exec rm -rf {} \;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment