/ Published in: Bash
delete all svn files recursive
Expand |
Embed | Plain Text
find ./ -name ".svn" | xargs rm -Rf
You need to login to post a comment.
manuelstofer on 03/11/10
1 person have marked this snippet as a favorite
delete all svn files recursive
find ./ -name ".svn" | xargs rm -Rf
You need to login to post a comment.