2022-02-14 02:22:51 +00:00
|
|
|
---
|
|
|
|
title: table
|
|
|
|
layout: command
|
|
|
|
version: 0.59.0
|
|
|
|
---
|
2021-05-30 00:57:04 +00:00
|
|
|
|
2022-02-14 02:22:51 +00:00
|
|
|
Render the table.
|
2021-05-30 00:57:04 +00:00
|
|
|
|
2022-02-14 02:22:51 +00:00
|
|
|
## Signature
|
|
|
|
|
2022-02-20 01:13:33 +00:00
|
|
|
```> table --start-number```
|
2022-02-14 02:22:51 +00:00
|
|
|
|
|
|
|
## Parameters
|
|
|
|
|
2022-02-20 01:13:33 +00:00
|
|
|
- `--start-number {int}`: row number to start viewing from
|
2021-05-30 00:57:04 +00:00
|
|
|
|
2022-02-21 17:26:00 +00:00
|
|
|
## Examples
|
|
|
|
|
|
|
|
List the files in current directory with index number start from 1.
|
|
|
|
```shell
|
|
|
|
> ls | table -n 1
|
|
|
|
```
|
|
|
|
|
|
|
|
Render data in table view
|
|
|
|
```shell
|
|
|
|
> echo [[a b]; [1 2] [3 4]] | table
|
|
|
|
```
|