find ./ -name ".svn" | xargs rm -RfExplanations:
xargs is used to build and execute command lines from standard input. It breaks list of arguments into sublists small enough to be acceptable.
find ./ -name ".svn" | xargs rm -RfExplanations:
xargs is used to build and execute command lines from standard input. It breaks list of arguments into sublists small enough to be acceptable.