Removing .svn directories from a folder in Terminal
Well i was trying to find a way to remove all the .svn files from a directory on OSx. I found this code worked the best for fully removing all .svn files recursively. find . -name .svn -print0 | xargs -0 rm -rf Remember to cd to the directory you are wanting to remove the .svn files from. cd Sites/project
January 6 2009, 7:25pm | Original Link »
blog comments powered by Disqus

