Last active
April 29, 2016 08:57
-
-
Save dreamyguy/8a3f0ecbdb946b724d767b49f8144025 to your computer and use it in GitHub Desktop.
Find files that are older than x days while excluding directories
This file contains hidden or 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 . -mtime +200 -name "*.js" -not -path "./components/*" -not -path "./node_modules/*" -not -path "./.git/*" -print |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment