1、file elf-file
查看文件类型/linker/stripped信息等
2、strings elf-file
查看elf文件里的字串相关等
3、nm -DC elf-file
查看一些symbol信息
4、objdump -Tt elf-file or objdump -d -S elf-file > test.txt
查看反汇编信息
5、readelf -d elf-file
查看shared library
PS:elf-file包括一些so/binary file,linux下命令,不清楚可以--hlep查询。