/ Published in: Objective C
Expand |
Embed | Plain Text
#!/bin/sh echo "recursively removing .svn folders from" pwd rm -rf `find . -type d -name .svn`
Comments
Subscribe to comments
You need to login to post a comment.

svn export {from} {to} does the same thing.
this will also work: find . - name ".svn" -type d | xargs rm -rf
exact same result, just one more way to get there.