Skip to content

Instantly share code, notes, and snippets.

@Markbnj
Created August 23, 2015 18:37
Show Gist options
  • Select an option

  • Save Markbnj/36cd1af217cc1c94fef9 to your computer and use it in GitHub Desktop.

Select an option

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