try this:
first do a listing to make sure that these are the files you want to delete
find /path/to/parentdir -type f -name '. *'
second do the actual removal
find /path/to/parentdir -type f -name '. *' -exec rm {} \;
OR
find /path/to/parentdir -type f -name '. *' | xargs rm