Recursively remove all .svn directories with xargs

With xargs you can joing the output of one command to the input of another when a pipe doesn’t work. Check out this example:

find . -name .svn -print0 | xargs -0 rm -rf


Posted

in

by

Tags:

Comments

Leave a Reply