find . -perm /o+x,g+x -type f
-perm /o+x,g+x = other users excutable OR group executable
-perm -o+x,g+x = other users excutable AND group executable
-perm -011 = other users excutable AND group executable
-type f = files, don’t show directories
r | w | x | |
r | 4 | 6 | 5 |
w | 6 | 2 | 3 |
x | 5 | 3 | 1 |
Plus, of course, 777 for all rights for all levels.