yq/pkg/yqlib/doc/operators/union.md

34 lines
354 B
Markdown
Raw Normal View History

2021-11-03 04:00:58 +00:00
# Union
This operator is used to combine different results together.
## Combine scalars
Running
```bash
2022-01-27 06:21:10 +00:00
yq --null-input '1, true, "cat"'
2021-11-03 04:00:58 +00:00
```
will output
```yaml
1
true
cat
```
## Combine selected paths
Given a sample.yml file of:
```yaml
a: fieldA
b: fieldB
c: fieldC
```
then
```bash
2022-01-27 06:21:10 +00:00
yq '.a, .c' sample.yml
2021-11-03 04:00:58 +00:00
```
will output
```yaml
fieldA
fieldC
```