You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

30 lines
499 B

7 years ago
nm
===
显示二进制目标文件的符号表
## 补充说明
**nm命令** 被用于显示二进制目标文件的符号表。
### 语法
```
nm(选项)(参数)
```
### 选项
```
-A每个符号前显示文件名
-D显示动态符号
-g仅显示外部符号
-r反序显示符号表。
```
### 参数
目标文件:二进制目标文件,通常是库文件和可执行文件。
<!-- Linux命令行搜索引擎https://jaywcjlove.github.io/linux-command/ -->