Skip to content

Instantly share code, notes, and snippets.

@alexander-arce
Created September 18, 2014 23:16
Show Gist options
  • Select an option

  • Save alexander-arce/92215949868d4a9358da to your computer and use it in GitHub Desktop.

Select an option

Save alexander-arce/92215949868d4a9358da to your computer and use it in GitHub Desktop.
Recursively remove all .pyc files from current directory
find . -name "*.pyc" -exec rm '{}' ';'
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment