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
the life and times of a code monkey
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
Found this via a post on Digg. A very useful read if you want to get some more advanced things done in Unix.
(0)This document is a collection of Unix/Linux/BSD commands and tasks which are useful for IT work or for advanced users. This is a practical guide with concise explanations, however the reader is supposed to know what s/he is doing.
Recent Comments