Tag Archive for 'unix'

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

Unix Toolbox

Found this via a post on Digg. A very useful read if you want to get some more advanced things done in Unix.

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.

full article

(0)