Technology solutions for Systems Engineers and Admins. Linux, Windows, scripts, and code.
rm -rf `find . -type d -name .svn`
Or you can use:find . -type d -name .svn -exec rm -rf {} \;
Or you can use:
ReplyDeletefind . -type d -name .svn -exec rm -rf {} \;