table
Render the table.
Signature
> table --start-number --list --width
Parameters
--start-number {int}
: row number to start viewing from--list
: list available table modes/themes--width {int}
: number of terminal columns wide (not output columns)
Examples
List the files in current directory with index number start from 1.
> ls | table -n 1
Render data in table view
> echo [[a b]; [1 2] [3 4]] | table