Skip to content

Instantly share code, notes, and snippets.

@FenrirUnbound
Created November 12, 2013 06:34
Show Gist options
  • Save FenrirUnbound/7426471 to your computer and use it in GitHub Desktop.
Save FenrirUnbound/7426471 to your computer and use it in GitHub Desktop.
Remove all *.pyc from a 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