/ Published in: Bash
Quick command I use to remove .SVN folders from a tree structure copied from SVN working copy. Sometimes a bit easier than running an export.
Expand |
Embed | Plain Text
find . -name ".svn" -exec rm -rf {} \;
You need to login to post a comment.
