1
0
mirror of https://github.com/taigrr/yq synced 2025-01-18 04:53:17 -08:00
yq/pkg/yqlib/doc/Collect into Array.md
2020-11-22 13:50:32 +11:00

441 B

Collect into Array

This creates an array using the expression between the square brackets.

Collect empty

Running

yq eval --null-input '[]'

will output

[]

Collect single

Running

yq eval --null-input '["cat"]'

will output

- cat

Collect many

Given a sample.yml file of:

a: cat
b: dog

then

yq eval '[.a, .b]' sample.yml

will output

- cat
- dog