I set this up at root location and tried to execute and got a stall
Actually I got this output
Usage: file [-bcEhikLlNnprsvzZ0] [--apple] [--extension]
[--mime-encoding] [--mime-type]
[-e testname] [-F separator] [-f namefile] [-m magicfiles]
file ...
file -C [-m magicfiles]
file [--help]
Usage: file [-bcEhikLlNnprsvzZ0] [--apple] [--extension]
[--mime-encoding] [--mime-type]
[-e testname] [-F separator] [-f namefile] [-m magicfiles]
file ...
file -C [-m magicfiles]
file [--help]
Can we find something which works?
On 3/23/24 22:41, Russell Senior wrote:
for i in $(echo $PATH | awk 'BEGIN { RS=":" } { print $0 }') ; do find $i
-type f -executable -print0 | xargs -0 file ; done | grep ELF | sort | uniq
| less