2022-02-14 03:22:51 +01:00
|
|
|
---
|
|
|
|
title: to csv
|
|
|
|
layout: command
|
2022-03-04 13:10:09 +01:00
|
|
|
version: 0.59.1
|
2022-02-14 03:22:51 +01:00
|
|
|
---
|
|
|
|
|
2022-02-22 14:11:46 +01:00
|
|
|
Convert table into .csv text
|
2022-02-14 03:22:51 +01:00
|
|
|
|
|
|
|
## Signature
|
|
|
|
|
|
|
|
```> to csv --separator --noheaders```
|
|
|
|
|
|
|
|
## Parameters
|
|
|
|
|
|
|
|
- `--separator {string}`: a character to separate columns, defaults to ','
|
|
|
|
- `--noheaders`: do not output the columns names as the first row
|
|
|
|
|
|
|
|
## Examples
|
|
|
|
|
|
|
|
Outputs an CSV string representing the contents of this table
|
|
|
|
```shell
|
|
|
|
> [[foo bar]; [1 2]] | to csv
|
|
|
|
```
|
|
|
|
|
|
|
|
Outputs an CSV string representing the contents of this table
|
|
|
|
```shell
|
2022-02-22 14:11:46 +01:00
|
|
|
> [[foo bar]; [1 2]] | to csv -s ';'
|
2022-02-14 03:22:51 +01:00
|
|
|
```
|