2022-02-13 21:22:51 -05:00
|
|
|
---
|
|
|
|
title: table
|
|
|
|
layout: command
|
2022-03-04 20:10:09 +08:00
|
|
|
version: 0.59.1
|
2022-02-13 21:22:51 -05:00
|
|
|
---
|
2021-05-30 12:57:04 +12:00
|
|
|
|
2022-02-13 21:22:51 -05:00
|
|
|
Render the table.
|
2021-05-30 12:57:04 +12:00
|
|
|
|
2022-02-13 21:22:51 -05:00
|
|
|
## Signature
|
|
|
|
|
2022-02-20 09:13:33 +08:00
|
|
|
```> table --start-number```
|
2022-02-13 21:22:51 -05:00
|
|
|
|
|
|
|
## Parameters
|
|
|
|
|
2022-02-20 09:13:33 +08:00
|
|
|
- `--start-number {int}`: row number to start viewing from
|
2021-05-30 12:57:04 +12:00
|
|
|
|
2022-02-22 01:26:00 +08: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
|
|
|
|
```
|