One of the missions of an export tool I have in my application, is to clean all .svn directories from my application directory tree. I am looking for a recursiv
.svn
Try this:
find . -name .svn -exec rm -rf '{}' \;
Before running a command like that, I often like to run this first:
find . -name .svn -exec ls '{}' \;