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

38 lines
406 B
Markdown
Raw Normal View History

2021-11-03 04:00:58 +00:00
# Pipe
Pipe the results of an expression into another. Like the bash operator.
## Simple Pipe
Given a sample.yml file of:
```yaml
a:
b: cat
```
then
```bash
2022-01-27 06:21:10 +00:00
yq '.a | .b' sample.yml
2021-11-03 04:00:58 +00:00
```
will output
```yaml
cat
```
## Multiple updates
Given a sample.yml file of:
```yaml
a: cow
b: sheep
c: same
```
then
```bash
2022-01-27 06:21:10 +00:00
yq '.a = "cat" | .b = "dog"' sample.yml
2021-11-03 04:00:58 +00:00
```
will output
```yaml
a: cat
b: dog
c: same
```