From eab3df67aeb1a15f21e9c91f484a28834d242bcd Mon Sep 17 00:00:00 2001 From: Bill Flynn Date: Fri, 30 Nov 2018 13:10:37 -0500 Subject: [PATCH] seq: add --format example --- pages/common/seq.md | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/pages/common/seq.md b/pages/common/seq.md index 6fca217792..9b644934a6 100644 --- a/pages/common/seq.md +++ b/pages/common/seq.md @@ -13,3 +13,7 @@ - Separate the output with a space instead of a newline: `seq -s " " 5 3 20` + +- Format the output with (4 digit) zero padding: + +`seq --format "%04g" 5 3 20`