Monthly Archives: February 2010

Removing ._ Files From Mounted Drives

Here’s a quick snippet of goodness to remove those annoying ‘._’ files that Macs generate on mounted drives… cd [wherever you want to clean] find . -name "._*" -exec rm ‘{}’ \; -print

Posted in mac | Tagged , , | 2 Comments