Search executable files

From snippet wiki
Jump to navigation Jump to search

To find all executable files from your currrent folder position, try this:

find . -type f -perm /111 -print

Instead of -perm /111 it might also exist an -executable parameter instead, depending of your find sources. Or you can use -perm -a=x.