Skip to content

Instantly share code, notes, and snippets.

@philippeowagner
Last active December 24, 2015 11:59
Show Gist options
  • Save philippeowagner/6794344 to your computer and use it in GitHub Desktop.
Save philippeowagner/6794344 to your computer and use it in GitHub Desktop.
Remove all .pyc files.
find -type f -name "*.pyc" -delete
@philippeowagner
Copy link
Author

find . -name "*.pyc" -exec rm -rf {} \;

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment