How can I recursively delete all files & directories that match a certain pattern? e.g. remove all the \".svn\" directories and the files they contain?
(Sadly DO
On *nix or Cygwin:
find -name .svn -print0 | xargs -0 rm -rf