Skip to content

Instantly share code, notes, and snippets.

@edeustace
Last active August 29, 2015 13:56
Show Gist options
  • Save edeustace/8842732 to your computer and use it in GitHub Desktop.
Save edeustace/8842732 to your computer and use it in GitHub Desktop.
remove folders older than 10 days
find . -maxdepth 1 -ctime +30 -type d | xargs rm -f
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment