Skip to content

Instantly share code, notes, and snippets.

@hugodias
Last active October 12, 2015 12:27
Show Gist options
  • Save hugodias/4026227 to your computer and use it in GitHub Desktop.
Save hugodias/4026227 to your computer and use it in GitHub Desktop.
Remove files recursive in tree mode unix
# 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