|
|
发表于 2003-10-19 18:06:13
|
显示全部楼层
1.file `find / -name '*abc*' -type f -perm 0755`|grep ELF
我用的很好:file `find /bin -name '*' -type f -perm 0755`|grep ELF输出如下:
/bin/ed: ELF 32-bit LSB executable, Intel 80386, version 1 (SYSV), for GNU/Linux 2.2.5, dynamically linked (uses shared libs), stripped
................
如果真的不行,可以式式:
find / -name '*' -type f -perm 755|xargs file ""|grep "ELF 32-bit LSB executable"
还不行,我也没法了。 |
|