I have found from some where to use the below syntax for remove .svn folders. And it works for me so i thought it might be useful. So i shared this
find ./ -name ".svn" | xargs rm -Rf
or
find ./ -name “.svn” -exec rm -rf {} \;
Source: http://www.rickhurst.co.uk/category/linux/
No comments:
Post a Comment