Removing ._ files on Linux
If you have zipped up a directory from a Mac OSX machine and unzipped it on a linux box, chances are you have heaps of hidden files that look like ._myfile and ._mydirectory – these are files that OSX uses to keep track of additional information about your files.
To remove these, do the following at the command line:
find . -name "._*" -print0 | xargs -0 rm -rf
That will remove all the files and you will have a clean linux hierarchy!

October 29th, 2008 at 8:25 pm
Man, thank you SO MUCH for this command line. You solve a big problem here.
Best regards from Brazil
December 26th, 2008 at 9:56 pm
Why not rm -rf ._* ?
January 27th, 2009 at 1:34 am
Thx a bunch!