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

28
pages.zh/linux/readpe.md Normal file
View File

@@ -0,0 +1,28 @@
# readpe
> 显示有关PE文件的信息。
> 更多信息:<https://manned.org/readpe>。
- 显示PE文件的所有信息
`readpe {{路径/到/可执行文件}}`
- 显示PE文件中存在的所有头信息
`readpe --all-headers {{路径/到/可执行文件}}`
- 显示PE文件中存在的所有节
`readpe --all-sections {{路径/到/可执行文件}}`
- 显示PE文件中的特定头信息
`readpe --header {{dos|coff|optional}} {{路径/到/可执行文件}}`
- 列出所有导入的函数:
`readpe --imports {{路径/到/可执行文件}}`
- 列出所有导出的函数:
`readpe --exports {{路径/到/可执行文件}}`