Last active
December 24, 2015 11:59
-
-
Save philippeowagner/6794344 to your computer and use it in GitHub Desktop.
Remove all .pyc files.
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 -name "*.pyc" -delete |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
find . -name "*.pyc" -exec rm -rf {} \;