Skip to content

Instantly share code, notes, and snippets.

@huyby
Created November 20, 2013 13:26
Show Gist options
  • Save huyby/7563131 to your computer and use it in GitHub Desktop.
Save huyby/7563131 to your computer and use it in GitHub Desktop.
Recursively remove .svn folders
$ find . -name ".svn" -exec rm -rf {} \;
OR
$ find . -name ".svn" -delete
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment