Forrest logo
back to context overview

column

List of commands for column:

  • column:tldr:1b662 column: Fill rows before filling columns.
    $ printf "header1\nbar\nfoobar\n" | column --output-width ${30} --fillrows
    try on your machine
    explain this command
  • column:tldr:6e25e column: Split columns automatically and auto-align them in a tabular format.
    $ printf "header1 header2\nbar foo\n" | column --table
    try on your machine
    explain this command
  • column:tldr:adbf9 column: Format the output of a command for a 30 characters wide display.
    $ printf "header1 header2\nbar foo\n" | column --output-width ${30}
    try on your machine
    explain this command
  • column:tldr:d0efe column: Specify the column delimiter character for the `--table` option (e.g. "," for CSV) (defaults to whitespace).
    $ printf "header1,header2\nbar,foo\n" | column --table --separator ${,}
    try on your machine
    explain this command
back to context overview