Created
August 16, 2019 17:28
-
-
Save bergpb/8eddff252bd5f146d5d5a1d208bbe0e6 to your computer and use it in GitHub Desktop.
Remove __pycache__ folders
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
| echo "Removing __pycache__ folders" | |
| find . -name __pycache__ -type d -exec rm -rf {} \; | |
| find ./app/* -name __pycache__ -type d -exec rm -rf {} \; | |
| echo "Ok!" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment