From 0b77c6c5835b5c660fccf04873c6a1a3bd83ccfe Mon Sep 17 00:00:00 2001 From: Waldir Pimenta Date: Thu, 16 May 2019 21:46:41 +0100 Subject: [PATCH] column: fix and reorder -s example (#2990) The `-s` option only works if `-t` is passed as well (as the description indicates), and because of that, it should be shown after the `-t` example. --- pages/common/column.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/pages/common/column.md b/pages/common/column.md index c6e283646b..6cb8139c73 100644 --- a/pages/common/column.md +++ b/pages/common/column.md @@ -7,14 +7,14 @@ `printf "header1 header2\nbar foo\n" | column -c {{30}}` -- Specify column delimiter character for the -t option (e.g. "," for csv); default is whitespace: - -`printf "header1,header2\nbar,foo\n" | column -s{{,}}` - - Split columns automatically and auto-align in a tabular format: `printf "header1 header2\nbar foo\n" | column -t` +- Specify column delimiter character for the -t option (e.g. "," for csv); default is whitespace: + +`printf "header1,header2\nbar,foo\n" | column -t -s{{,}}` + - Fill columns before filling rows: `printf "header1\nbar\nfoobar\n" | column -c {{30}} -x`