mirror of
https://github.com/mikefarah/yq.git
synced 2024-11-12 13:48:06 +00:00
32 lines
344 B
Markdown
32 lines
344 B
Markdown
|
# 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
|
||
|
```
|
||
|
|