Created
January 18, 2012 08:51
-
-
Save leonardehrenfried/1632046 to your computer and use it in GitHub Desktop.
Deleting files older than 6 months
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
find ./ -type f -mtime +180 -exec rm {} \; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment