/ Published in: Bash
following example code removes all ".svn" folders recursively
Expand |
Embed | Plain Text
/* way 1 */ rm -rf `find . -type d -name .svn` /* way 2 */ find -name ".svn" -print0 | xargs -0 rm -rf
You need to login to post a comment.
