Skip to content

Instantly share code, notes, and snippets.

@inlanger
Created April 12, 2012 09:13
Show Gist options
  • Save inlanger/2365770 to your computer and use it in GitHub Desktop.
Save inlanger/2365770 to your computer and use it in GitHub Desktop.
Remove all pyc files from folder and subfolders
find . -type f -name '*.pyc' -exec rm {} \;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment