cp, grub-install, grub-mkconfig, hexdump, readelf: add Chinese translation (#6278)

This commit is contained in:
errorcode
2021-08-14 01:19:36 +08:00
committed by GitHub
parent e1f284ac5d
commit 39b5be991a
5 changed files with 99 additions and 0 deletions

20
pages.zh/linux/readelf.md Normal file
View File

@@ -0,0 +1,20 @@
# readelf
> 显示 EFI 文件信息。
> 更多信息:<http://man7.org/linux/man-pages/man1/readelf.1.html>.
- 显示 ELF 所有文件信息:
`readelf -all {{path/to/binary}}`
- 显示 ELF 文件的所有头信息:
`readelf --headers {{path/to/binary}}`
- 如果存在符号表项,则显示 ELF 文件内的符号表项:
`readelf --symbols {{path/to/binary}}`
- 显示 ELF 文件头信息:
`readelf --file-header {{path/to/binary}}`