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