My ubuntu desktop has a different version of svn installed and eclipse has a different version of svn. Due to some issue eclipse is whining to cleanup the svn folders. But unfortunately svn cleanup on terminal doesn't work due to version conflicts. My code folder contains tons of directories and files.
How to recursively remove just the .svn folders so that i can continue?

find . -name .svn -print0 | xargs -0 rm -rf
- Visitor 17 weeks 18 hours ago