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 {} \;
Post a Comment
1 comment:
Or you can use:
find . -type d -name .svn -exec rm -rf {} \;
Post a Comment