Open a Terminal, and browser to the folder we want to start recursive deletion and run the following command , for example to delete all folder named .svn
find ./ -name “.svn” | xargs rm -Rf
Published by Sajith Amma
Open a Terminal, and browser to the folder we want to start recursive deletion and run the following command , for example to delete all folder named .svn
find ./ -name “.svn” | xargs rm -Rf