yq/usage/csv-tsv.md

42 lines
682 B
Markdown
Raw Normal View History

2021-12-04 03:08:16 +00:00
# Working with CSV and TSV
## Yaml to CSV/TSV
You can convert compatible yaml structures to CSV or TSV by using:
- `--outputformat=csv` or `-o=c` for csv (comma separated values)
- `--outputformat=tsv` or `-o=t` for tsv (tab separated values)
Compatible structures is either an array of scalars (strings/numbers/booleans), which is a single row; or an array of arrays of scalars (multiple rows).
```yaml
- [i, like, csv]
- [because, excel, is, cool]
```
then
```bash
2022-01-28 01:50:13 +00:00
yq '.' -o=csv sample.yaml
2021-12-04 03:08:16 +00:00
```
will output:
```csv
i,like,csv
because,excel,is,cool
```
Similarly, for tsv:
```bash
2022-01-28 01:50:13 +00:00
yq '.' -o=tsv sample.yaml
2021-12-04 03:08:16 +00:00
```
will output:
```tsv
i like csv
because excel is cool
```