How to find the executable files under a certain directory in linux?
feedback
|
migrated from stackoverflow.com Sep 10 '09 at 12:46
This question came from our site for professional and enthusiast programmers.
|
use the
if you want to find only executable files and not searchable directories, combine with
EDIT: checking with the comments i see there’s no type | |||||||||||||||
feedback
|
|
Use the find's
Edit: I just found another option that is present at least in GNU find 4.4.0:
This should work even better because ACLs are also considered. | |||||||
feedback
|