/ Published in: Bash
Execute this to remove the .svn directory from the current directory and all sub directories
Expand |
Embed | Plain Text
Copy this code and paste it in your HTML
find . -regex '.*.svn' -exec rm -rf "{}" \;