yq/pkg/yqlib/doc/operators/union.md
2022-02-06 14:39:46 +11:00

502 B

Union

This operator is used to combine different results together.

{% hint style="warning" %} Note that versions prior to 4.18 require the 'eval/e' command to be specified.

yq e <exp> <file> {% endhint %}

Combine scalars

Running

yq --null-input '1, true, "cat"'

will output

1
true
cat

Combine selected paths

Given a sample.yml file of:

a: fieldA
b: fieldB
c: fieldC

then

yq '.a, .c' sample.yml

will output

fieldA
fieldC