Skip to content

Instantly share code, notes, and snippets.

@kennethreitz
Created March 8, 2010 20:16
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save kennethreitz/325596 to your computer and use it in GitHub Desktop.
Save kennethreitz/325596 to your computer and use it in GitHub Desktop.
Recursively delete all .svn folders from a working directory.
find . -name .svn -exec rm -rf {} \;
rm -rf `find . -type d -name .svn`
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment