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`