De acordo com man find
:
-perm /mode
Any of the permission bits mode are set for the file.
Portanto, -perm /a+x
corresponderá a um arquivo com qualquer bit executável definido.
-executable
Matches files which are executable and directories which are
searchable (in a file name resolution sense). This takes into
account access control lists and other permissions artefacts
which the -perm test ignores. This test makes use of the
access(2) system call, and so can be fooled by NFS servers which
do UID mapping (or root-squashing), since many systems implement
access(2) in the client's kernel and so cannot make use of the
UID mapping information held on the server. Because this test
is based only on the result of the access(2) system call, there
is no guarantee that a file for which this test succeeds can
actually be executed.
Portanto, -executable
corresponderá a um arquivo que o usuário atual pode acessar de acordo com a% de chamada do sistemaaccess()
.