From 872d359bbd6a93fc12c540c6eee3db7874d71286 Mon Sep 17 00:00:00 2001 From: nzdjb Date: Sun, 17 Oct 2021 17:21:49 +1300 Subject: [PATCH] hexdump: add --no-squeezing example (#6894) --- pages/common/hexdump.md | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/pages/common/hexdump.md b/pages/common/hexdump.md index f5dc813447..0f46e02f29 100644 --- a/pages/common/hexdump.md +++ b/pages/common/hexdump.md @@ -3,7 +3,7 @@ > An ASCII, decimal, hexadecimal, octal dump. > More information: . -- 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}}`