/ 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.
irishsk on 08/07/08
3 people have marked this snippet as a favorite
#!/bin/sh echo "recursively removing .svn folders from" pwd rm -rf `find . -type d -name .svn`
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.