yq/pkg/yqlib/doc/operators/split-into-documents.md

38 lines
482 B
Markdown
Raw Normal View History

2021-11-03 04:00:58 +00:00
# Split into Documents
This operator splits all matches into separate documents
2022-02-06 03:39:46 +00:00
{% hint style="warning" %}
Note that versions prior to 4.18 require the 'eval/e' command to be specified. 
`yq e <exp> <file>`
{% endhint %}
2021-11-03 04:00:58 +00:00
## Split empty
Running
```bash
2022-01-27 06:21:10 +00:00
yq --null-input 'splitDoc'
2021-11-03 04:00:58 +00:00
```
will output
```yaml
```
## Split array
Given a sample.yml file of:
```yaml
- a: cat
- b: dog
```
then
```bash
2022-01-27 06:21:10 +00:00
yq '.[] | splitDoc' sample.yml
2021-11-03 04:00:58 +00:00
```
will output
```yaml
a: cat
---
b: dog
```