Skip to content

Instantly share code, notes, and snippets.

@bockor
Created January 31, 2021 09:12
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save bockor/0c0f4a1cc9a45ab9237c359967ce2fe5 to your computer and use it in GitHub Desktop.
Save bockor/0c0f4a1cc9a45ab9237c359967ce2fe5 to your computer and use it in GitHub Desktop.
Remove Bytecode (.pyc) Files in Linux
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