mirror of
https://github.com/danbulant/nushell
synced 2026-05-19 12:29:03 +00:00
382 B
382 B
| title | layout | version |
|---|---|---|
| table | command | 0.59.0 |
Render the table.
Signature
> table --start-number
Parameters
--start-number {int}: row number to start viewing from
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