Skip to content

Instantly share code, notes, and snippets.

@philsinatra
Created January 4, 2013 15:39
Show Gist options
  • Save philsinatra/4453541 to your computer and use it in GitHub Desktop.
Save philsinatra/4453541 to your computer and use it in GitHub Desktop.
Find and remove files recursively with Terminal
cd to/dir/where/you/want/to/start
find . -type d -name '.svn' -print -exec rm -rf {} \;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment