/ Published in: Bash
Execute this to remove the .svn directory from the current directory and all sub directories
Expand |
Embed | Plain Text
find . -regex '.*.svn' -exec rm -rf "{}" \;
Comments
Subscribe to comments
You need to login to post a comment.

This has already been posted, in a little different version though: http://snipplr.com/view/5658/remove-svn-files-from-a-directory-structure/
omg, here's another one: rm -rf
find . -type d -name .svn