Last updated 2 years ago
This operator is used to combine different results together.
Running
will output
Given a sample.yml file of:
then
yq --null-input '1, true, "cat"'
1 true cat
a: fieldA b: fieldB c: fieldC
yq '.a, .c' sample.yml
fieldA fieldC