Recursively Remove .svn Directories in Linux

Recursively Remove .svn Directories in Linux

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

Another way, is to use svn export. Copy of project will be without .svn
svn export project copyOfProject