Skip to content

Instantly share code, notes, and snippets.

@o-shabashov
Created September 11, 2013 02:31
Show Gist options
  • Save o-shabashov/6518691 to your computer and use it in GitHub Desktop.
Save o-shabashov/6518691 to your computer and use it in GitHub Desktop.
Unix delete old files in directory From http://snipplr.com/view/71161/unix-delete-old-files/
find . -mtime +14 -delete
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment