Last active
August 29, 2015 14:01
-
-
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
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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