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

@@ -1,16 +1,20 @@
# hexdump
> 一个 ASCII十进制十六进制八进制转换查看工具
> 更多信息:<https://manned.org/hexdump>.
> 一个 ASCII十进制十六进制八进制的转储
> 更多信息:<https://manned.org/hexdump>
- 打印文件的十六进制表示形式
- 打印文件的十六进制表示,重复的行用 '*' 替代
`hexdump {{路径/到/文件}}`
`hexdump {{path/to/file}}`
-十六进制显示输入偏移量,并在最后两列中显示其 ASCII 表示形式
-两列显示输入偏移量的十六进制和其 ASCII 表示:
`hexdump -C {{路径/到/文件}}`
`hexdump -C {{path/to/file}}`
- 显示文件的十六进制表示,但只解释输入的 N 个字节:
- 打印文件的十六进制表示,但只解释输入的 n 个字节:
`hexdump -C -n{{字节数}} {{路径/到/文件}}`
`hexdump -C -n{{number_of_bytes}} {{path/to/file}}`
- 不用 '*' 替代重复的行:
`hexdump --no-squeezing {{path/to/file}}`