Skip to content

Instantly share code, notes, and snippets.

@solarsailer
Created May 3, 2011 15:24
Show Gist options
  • Save solarsailer/953528 to your computer and use it in GitHub Desktop.
Save solarsailer/953528 to your computer and use it in GitHub Desktop.
Recursively remove all .svn directories
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