Created
August 15, 2012 03:49
-
-
Save davidnunez/3355661 to your computer and use it in GitHub Desktop.
Find and remove files by name in directory and its subdirectories recursively
This file contains hidden or 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
find . -name "*.meta" -print0 | xargs -0 -I {} rm -r {} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment