Delete .SVN Directories

Ever acci­den­tal­ly do an svn check­out instead of an export? Here’s a com­mand-line snip­pet to take care of those hid­den .SVN direc­to­ries:

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

Warn­ing: Take great care when using “rm ‑rf” always.

Comments are currently closed.