Many get terribly annoyed by the .svn directories that are created by the SVN clients. Here’s a quick way to list them
$ find -type d -name .svn |
To delete them now combine it with rm
$ rm -rf `find -type d -name .svn` |
Please note the reverse quote that’s on the tilde key – without the shift though 🙂