Created
January 31, 2021 09:12
-
-
Save bockor/0c0f4a1cc9a45ab9237c359967ce2fe5 to your computer and use it in GitHub Desktop.
Remove Bytecode (.pyc) Files in Linux
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 "*.py[co]" -delete -or -type d -name "__pycache__" -delete |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment