/ 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
Copy this code and paste it in your HTML
find . -name ".svn" -exec rm -rf {} \;