Skip to content

Instantly share code, notes, and snippets.

@MaciekBaron
Created September 4, 2014 12:14
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 MaciekBaron/264c2435a975938c26fc to your computer and use it in GitHub Desktop.
Save MaciekBaron/264c2435a975938c26fc to your computer and use it in GitHub Desktop.
Delete folders older than x days
find /path/to/base/dir -type d -ctime +10 -exec rm -rf {} \;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment