/ Published in: Bash
following example code removes all ".svn" folders recursively
Expand |
Embed | Plain Text
Copy this code and paste it in your HTML
/* way 1 */ rm -rf `find . -type d -name .svn` /* way 2 */ find -name ".svn" -print0 | xargs -0 rm -rf