Unzipping/untaring an archive that was created on a Mac can produce a lot of ._blah and .DS_Store files. Rid yourself of them with:
find . \( -name '._*' -o -name '.DS_Store' \) -exec rm {} \;
or, if you’re using GNU find (e.g. on Ubuntu) you can use -delete:
find . \( -name '._*' -o -name '.DS_Store' \) -delete








Jun 18th, 2009 at 3:14 pm Nick Yeoman
BLAH, I hate those mac jerks who leave their hidden files in tarballs, awesome tutorial!
Now You