In bash, this will delete everything in the current working directory which has the prefix `._`:
rm ._*
If what you actually wanted to do was change their names to a form without the prefix, you can run:
ls ._* | while read line
do
mv -- "$line" "${line:2}"
done