Once you have found the hidden files, you can execute any command on each entry. Suppose you have
Code:
$ find . -regex '.*/\..*'
./.hiddenfile_1
./.hiddenfile_2
You can add the -exec option to the find command and get for example
Code:
$ find . -regex '.*/\..*' -exec ls -l {} \;
-rw-r--r-- 1 colucix users 11 Mar 28 10:40 ./.hiddenfile_1
-rw-r--r-- 1 colucix users 20 Mar 28 10:43 ./.hiddenfile_2
$ find . -regex '.*/\..*' -exec file {} \;
./.hiddenfile_1: ASCII text
./.hiddenfile_2: ASCII text
See man find for details.