Last active
October 12, 2015 12:27
-
-
Save hugodias/4026227 to your computer and use it in GitHub Desktop.
Remove files recursive in tree mode unix
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
# Will remove all .mp3 files starting in current directory and will search in each folder | |
find . -name '._*' -exec rm -f {} \; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment