add new chinese translations

This commit is contained in:
2024-12-30 15:25:56 +08:00
parent a850046d7b
commit 0d798759fd
5418 changed files with 105800 additions and 7052 deletions

20
pages.zh/common/nm.md Normal file
View File

@@ -0,0 +1,20 @@
# nm
> 列出目标文件中的符号名称。
> 更多信息:<https://manned.org/nm>。
- 列出文件中的全局(外部)函数(以 T 为前缀):
`nm -g {{path/to/file.o}}`
- 仅列出文件中的未定义符号:
`nm -u {{path/to/file.o}}`
- 列出所有符号,甚至调试符号:
`nm -a {{path/to/file.o}}`
- 解码 C++ 符号(使其可读):
`nm --demangle {{path/to/file.o}}`