Assume you want to clean your directories from SVN folders (SVN creates a .svn folder in each versioned folder) you can simply use the following command on *nix and cygwin shell:
find -name .svn -print0 | xargs -0 rm -rf
Assume you want to clean your directories from SVN folders (SVN creates a .svn folder in each versioned folder) you can simply use the following command on *nix and cygwin shell:
find -name .svn -print0 | xargs -0 rm -rf