Removing .svn files and folders

How to remove .svn files

find ./ -name ?.svn? | xargs rm -Rf

Comments