Skip to content

Instantly share code, notes, and snippets.

@jianshen92
Created April 14, 2021 04:28
Show Gist options
  • Save jianshen92/d0cd0df3248689da1f5318defc62e5dd to your computer and use it in GitHub Desktop.
Save jianshen92/d0cd0df3248689da1f5318defc62e5dd to your computer and use it in GitHub Desktop.
Remove all *pyc files and __pycache__ folder
find . -type f -name '*.py[co]' -delete -o -type d -name __pycache__ -delete
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment