How to remove "._" files in a directory? Ubuntu
rm ./._*
more stuff since it must be at least 15 characters.
I use the following command to remove all of those annoying Apple files, but this one also does it recursively through all sub-directories, too:
# find . -iname '._*' -exec rm -rf {} \;