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

15
pages.zh/linux/hexdump.md Normal file
View File

@@ -0,0 +1,15 @@
# hexdump
> 一个 ASCII十进制十六进制八进制转换查看工具。
- 打印文件的十六进制表示形式:
`hexdump {{文件}}`
- 以十六进制显示输入偏移量,并在最后两列中显示其 ASCII 表示形式:
`hexdump -C {{文件}}`
- 显示文件的十六进制表示,但只解释输入的 N 个字节:
`hexdump -C -n{{字节数}} {{文件}}`