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}}`