This simple program removes recursively all .svn directories.
Requirements: In order to run remove-svn requires python.
Synopsis: remove-svn syntax is: remove-svn dir
in this way remove-svn will recursively remove all .svn directories found under dir.
An example: remove-svn
pwd``
UPDATE A faster way for removing .svn file through this simple bash command: find ./ -name *svn* | xargs rm -rf
The old script has been removed.