Skip to content

Instantly share code, notes, and snippets.

@stephenparish
Created November 9, 2011 00:07
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 stephenparish/1349801 to your computer and use it in GitHub Desktop.
Save stephenparish/1349801 to your computer and use it in GitHub Desktop.
Remove All SVN Folders -- When I have to clean up an old SVN checkout, I use this to remove the junk.
#!/bin/sh
echo "Recursively removing .svn folders from"
pwd
rm -rf `find . -type d -name .svn`
echo "Folders removed."
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment