Skip to content

Instantly share code, notes, and snippets.

@hugorodgerbrown
Last active October 8, 2015 14:57
Show Gist options
  • Save hugorodgerbrown/3347899 to your computer and use it in GitHub Desktop.
Save hugorodgerbrown/3347899 to your computer and use it in GitHub Desktop.
Recursively delete files by type in Linux
find . -type f -name "*.pyc" -exec rm -f {} \;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment