From ddc10f1be0178a48f87950838b564d17cbe2c7db Mon Sep 17 00:00:00 2001 From: Agniva De Sarker Date: Mon, 19 Mar 2018 14:44:35 +0530 Subject: [PATCH] xxd: add length flag (#2034) --- pages/common/xxd.md | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/pages/common/xxd.md b/pages/common/xxd.md index e782daea3..4b6b81f43 100644 --- a/pages/common/xxd.md +++ b/pages/common/xxd.md @@ -14,6 +14,10 @@ `xxd -c {{10}} {{input_file}}` +- Display output only upto a length of 32 bytes: + +`xxd -l {{32}} {{input_file}}` + - Display the output in plain mode, without any gaps between the columns: `xxd -p {{input_file}}`