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:
parent
0f57987da0
commit
872d359bbd
1 changed files with 5 additions and 1 deletions
|
@ -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}}`
|
||||
|
|
Loading…
Add table
Reference in a new issue