hexdump, logger, netstat, n, nm, pdfgrep: move to common (#6549)

This commit is contained in:
marchersimon
2021-09-18 23:05:08 +02:00
committed by GitHub
parent f79d8e56e3
commit 442a013cb8
17 changed files with 2 additions and 129 deletions

View File

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