in reply to Finding and Moving hidden files in Unix

Assuming you want to move all the files to a specific directory, I'd use something like:
$ find source_dir -type f -name '.*' -print0 | xargs -0 -i mv '{}' tar +get_dir
Tailor to taste.