Skip to content

Instantly share code, notes, and snippets.

@dshipp
Last active August 29, 2015 14:01
Show Gist options
  • Save dshipp/f91da99793ab72b4c8da to your computer and use it in GitHub Desktop.
Save dshipp/f91da99793ab72b4c8da to your computer and use it in GitHub Desktop.
Find and delete all files matching a pattern (e.g. *.pyc files) recursing from the current directory
sudo find . -type f -name "*.pyc" -delete
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment