Ever copy a bunch of files from Mac to Windows or Linux, and have a bunch of hidden metadata files come along with them? You know; all the 'dot underscore' ( '._' ) files.
Here's how you get rid of them.
Windows: DEL ._* /A:H /S /P
Linux: find . -type f -name '._*' -delete