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

View File

@@ -0,0 +1,24 @@
# objdump
> 查看目标文件的信息。
> 更多信息:<https://manned.org/objdump>。
- 显示文件头信息:
`objdump -f {{path/to/binary}}`
- 显示所有头信息:
`objdump -x {{path/to/binary}}`
- 显示可执行部分的反汇编输出:
`objdump -d {{path/to/binary}}`
- 以 Intel 语法显示可执行部分的反汇编:
`objdump -M intel -d {{path/to/binary}}`
- 显示所有部分的完整二进制十六进制转储:
`objdump -s {{path/to/binary}}`