Posts

Showing posts with the label Mac OS X

Delete all .svn folders in project directory on Mac

In terminal in project directory: find ./ -name ".svn" | xargs rm -Rf  Read here about xargs.