Digital Sanctum

software development, technology and other square topics

Remove .svn Or Any Other Hidden Folders in OS X

without comments

Finder in OS X seems to be retarded at finding hidden files and folders. In my case, I wanted to recursively remove all .svn folders from a directory. To do this, it’s command line to the rescue:

rm -rf `find . -type d -name .svn`

Written by Shane

March 7th, 2008 at 7:55 am

Posted in Mac OS X

Leave a Reply