Skip to content

Instantly share code, notes, and snippets.

@JasonGiedymin
Created April 16, 2012 21:24
Show Gist options
  • Save JasonGiedymin/2401614 to your computer and use it in GitHub Desktop.
Save JasonGiedymin/2401614 to your computer and use it in GitHub Desktop.
Find and remove all .svn folders recursively starting from pwd.
# Find and remove all .svn folders recursively starting from pwd.
find ./ -iname ".svn" -print0 | xargs -0 rm -R
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment