mirror of
https://github.com/mikefarah/yq.git
synced 2024-11-13 22:38:04 +00:00
368 B
368 B
This operator is used to combine different results together.
Examples
Combine scalars
Running
yq eval --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 eval '.a, .c' sample.yml
will output
fieldA
fieldC