1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-07-24 08:15:24 +02:00

hexdump: add --no-squeezing example (#6894)

This commit is contained in:
nzdjb 2021-10-17 17:21:49 +13:00 committed by GitHub
parent 0f57987da0
commit 872d359bbd
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -3,7 +3,7 @@
> An ASCII, decimal, hexadecimal, octal dump.
> More information: <https://manned.org/hexdump>.
- Print the hexadecimal representation of a file:
- Print the hexadecimal representation of a file, replacing duplicate lines by '*':
`hexdump {{file}}`
@ -14,3 +14,7 @@
- Display the hexadecimal representation of a file, but interpret only n bytes of the input:
`hexdump -C -n{{number_of_bytes}} {{file}}`
- Don't replace duplicate lines with '*':
`hexdump --no-squeezing {{file}}`