Created
February 10, 2016 19:59
-
-
Save anthonycarminati/c828493837ea907174c9 to your computer and use it in GitHub Desktop.
This script recursively removes all files from your current root and sub-directories. By changing the '*.pyc' block you can specify which files will be removed.
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 . -type f -name '*.pyc' -delete |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment