Removing ._ files created by Mac OS X

I moved some files to an Ubuntu server and found all files and directories had duplicate ._ versions. Apparently these are created for the OS X finder.
To get rid:
find ./ -iname "._*" -exec rm -rf -- {} ;
I moved some files to an Ubuntu server and found all files and directories had duplicate ._ versions. Apparently these are created for the OS X finder.
To get rid:
find ./ -iname "._*" -exec rm -rf -- {} ;