For the complete documentation index, see llms.txt. This page is also available as Markdown.

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

will output

Last updated