Why does the following command aiming to remove recursively all .svn folders
find . -name ".svn" | rm -rfv
doesn't work ?
I know the find
command provides the -exec
option to solve this issue but I just want to understand what is happening there.