Find and remove .svn folders from directories

by satheeshkumar 2014-07-02 14:34:50

Find and remove .svn folders from directories using linux commands,
 
find . -name .svn -exec rm -rf {}  ;

The above command will finds and remove all the .svn folders from current path..
1398
like
0
dislike
0
mail
flag

You must LOGIN to add comments