linux 命令和教程补充

This commit is contained in:
estomm
2021-12-24 11:16:28 +08:00
parent 40e916976b
commit b7c3653392
586 changed files with 46455 additions and 39 deletions

29
Linux/command/nm.md Normal file
View File

@@ -0,0 +1,29 @@
nm
===
显示二进制目标文件的符号表
## 补充说明
**nm命令** 被用于显示二进制目标文件的符号表。
### 语法
```shell
nm(选项)(参数)
```
### 选项
```shell
-A每个符号前显示文件名
-D显示动态符号
-g仅显示外部符号
-r反序显示符号表。
```
### 参数
目标文件:二进制目标文件,通常是库文件和可执行文件。