Tag Archives: 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

Posted in mac | Tagged , , | 2 Comments

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 … Continue reading

Posted in linux, mac, snippets | Tagged , , , , | Leave a comment