If you’re using SVN, you can see a lot of .svn-folders are created. When you need only the real stuff it is time consumming to remove all thos ugly folders.
Use following command to remove all .svn-folders recursilvely:
rm -rf `find . -type d -name .svn`