Re: Finding executables



dkchandler@xxxxxxxxx wrote:
Hello, I need to find all the executable files on our Linux system.
Not the files that are marked 777 executable, but files that are
programs or scripts. Does anyone have a clue as to where I can
start???? Thanks.


Not-so-perfect solution, but start:
find / | xargs file | grep executable
.