Skip to content

Instantly share code, notes, and snippets.

@piotrkilczuk
Created August 2, 2011 14:18
Show Gist options
  • Save piotrkilczuk/1120278 to your computer and use it in GitHub Desktop.
Save piotrkilczuk/1120278 to your computer and use it in GitHub Desktop.
Recusively delete pyc / pyo
find . -name "*.pyc" -exec rm '{}' ';'
find . -name "*.pyo" -exec rm '{}' ';'
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment