💾 Archived View for freeshell.de › tldr › column.gmi captured on 2023-01-29 at 04:33:36. Gemini links have been rewritten to link to archived content
⬅️ Previous capture (2022-04-28)
-=-=-=-=-=-=-
Format standard input or a file into multiple columns.
Columns are filled before rows; the default separator is a whitespace.
printf "header1 header2\nbar foo\n" | column --output-width {30}
printf "header1 header2\nbar foo\n" | column --table
printf "header1,header2\nbar,foo\n" | column --table --separator {,}
printf "header1\nbar\nfoobar\n" | column --output-width {30} --fillrows
Copyright © 2014—present the tldr-pages team and contributors.
This work is licensed under the Creative Commons Attribution 4.0 International License (CC-BY).