I have a directory with numerous files. Part of the files have the 755 permissions and the other part have 644 permissions. I'd like to convert the files with 755 permissions to 644. I have tried the following line by running it from the directory itself:
find . -perm 755 -exec chmod 644 {}\;
However as a result, the permission changed only for the directory itself and after changing it back I found out that the files permissions remained unchanged. Do I miss something?

find ./ -type f -exec chmod -x {} \;instead. – Shadur May 22 '12 at 11:20