Skip to content

Instantly share code, notes, and snippets.

@anuvrat
Created January 27, 2012 13:26
Show Gist options
  • Save anuvrat/1688768 to your computer and use it in GitHub Desktop.
Save anuvrat/1688768 to your computer and use it in GitHub Desktop.
Recursively remove .svn folders
find . -name .svn -print0 | xargs -0 rm -rf
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment