Using the command line, how can I get a list of all files in the current directory and all subdirectories in which the executable bit ( +x ) is set?
+x
Find your friend:
find <path> -perm -g=x -type f
to find all files (-type f) with x-bit set for the group in the "path".
Try the cool find wizard : it says: find . -perm u+x,g+x,o+x -print find . -perm u+x,g+x,o+x -print
find
find . -perm u+x,g+x,o+x -print
I did not check, so be careful!