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

32 lines
344 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
## Split empty
Running
```bash
yq eval --null-input 'splitDoc'
```
will output
```yaml
```
## Split array
Given a sample.yml file of:
```yaml
- a: cat
- b: dog
```
then
```bash
yq eval '.[] | splitDoc' sample.yml
```
will output
```yaml
a: cat
---
b: dog
```