mirror of
https://github.com/mikefarah/yq.git
synced 2024-12-19 20:19:04 +00:00
429 B
429 B
Collect into Array
This creates an array using the expression between the square brackets.
Collect empty
Running
yq --null-input '[]'
will output
[]
Collect single
Running
yq --null-input '["cat"]'
will output
- cat
Collect many
Given a sample.yml file of:
{a: cat, b: dog}
then
yq '[.a, .b]' sample.yml
will output
- cat
- dog