mirror of
https://github.com/mikefarah/yq.git
synced 2024-11-14 15:18:06 +00:00
34 lines
364 B
Markdown
34 lines
364 B
Markdown
|
# Union
|
||
|
|
||
|
This operator is used to combine different results together.
|
||
|
|
||
|
## Combine scalars
|
||
|
Running
|
||
|
```bash
|
||
|
yq eval --null-input '1, true, "cat"'
|
||
|
```
|
||
|
will output
|
||
|
```yaml
|
||
|
1
|
||
|
true
|
||
|
cat
|
||
|
```
|
||
|
|
||
|
## Combine selected paths
|
||
|
Given a sample.yml file of:
|
||
|
```yaml
|
||
|
a: fieldA
|
||
|
b: fieldB
|
||
|
c: fieldC
|
||
|
```
|
||
|
then
|
||
|
```bash
|
||
|
yq eval '.a, .c' sample.yml
|
||
|
```
|
||
|
will output
|
||
|
```yaml
|
||
|
fieldA
|
||
|
fieldC
|
||
|
```
|
||
|
|