Skip to content

Instantly share code, notes, and snippets.

@Markbnj
Created August 23, 2015 18:37
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 Markbnj/36cd1af217cc1c94fef9 to your computer and use it in GitHub Desktop.
Save Markbnj/36cd1af217cc1c94fef9 to your computer and use it in GitHub Desktop.
Recursively remove all .pyc files from a python project
find . -name "*.pyc" -exec rm -rf {} \;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment