Delete .SVN Directories


Ever accidentally do an svn checkout instead of an export? Here’s a command-line snippet to take care of those hidden .SVN directories:

rm -rf `find . -type d -name .svn`

Warning: Take great care when using “rm -rf” always.