a comand finding all files from unix system

Hi,
I am new in using unix systems and I need your help.

I would like to make a command that prints all files (not directories) from a file system. These files must be executable from all users (--x --x --x)

Thank you in advance

Maybe something like:

find . -type f -xdev -perm -111 -ls

(replace . with the directory you want to search)

thanks a lot !!