9 lines
132 B
Markdown
9 lines
132 B
Markdown
# Readelf 基本使用
|
|
|
|
```bash
|
|
# 查看符号表
|
|
readelf -s <elf file>
|
|
# 查看依赖库/动态段信息
|
|
readelf -d <elf file>
|
|
```
|