mirror of
https://github.com/mikefarah/yq.git
synced 2024-11-12 13:48:06 +00:00
344 B
344 B
Split into Documents
This operator splits all matches into separate documents
Split empty
Running
yq eval --null-input 'splitDoc'
will output
Split array
Given a sample.yml file of:
- a: cat
- b: dog
then
yq eval '.[] | splitDoc' sample.yml
will output
a: cat
---
b: dog