Skip to content

Instantly share code, notes, and snippets.

@jaypozo
Created June 17, 2015 20:17
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 jaypozo/0ab082ed59424f02889c to your computer and use it in GitHub Desktop.
Save jaypozo/0ab082ed59424f02889c to your computer and use it in GitHub Desktop.
Delete folders created over 7 days ago
#!/bin/bash
find /path/to/dir/ -maxdepth 1 -type d -ctime +7 -exec rm -rf {} \;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment