/ Published in: Bash
Expand |
Embed | Plain Text
find . -type d -name "*.svn" -print0 | xargs -0 rm -rdf
Comments
Subscribe to comments
You need to login to post a comment.
dalcacer on 03/09/10
1 person have marked this snippet as a favorite
find . -type d -name "*.svn" -print0 | xargs -0 rm -rdf
Subscribe to comments
You need to login to post a comment.
This bash-line removes all .svn-Folders recursively.