Skip to content

Instantly share code, notes, and snippets.

@assertchris
Created September 27, 2011 08:59
Show Gist options
  • Save assertchris/1244642 to your computer and use it in GitHub Desktop.
Save assertchris/1244642 to your computer and use it in GitHub Desktop.
Recursive .svn folder delete
find ./ -type d -name '.svn' -print0 | xargs -0 rm -rdf
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment