mirror of
https://github.com/mikefarah/yq.git
synced 2025-01-14 12:35:35 +00:00
v4.30.7
This commit is contained in:
parent
651c981cad
commit
3f13bf65a1
@ -86,6 +86,23 @@ will output
|
|||||||
a: ['dog', 'cat']
|
a: ['dog', 'cat']
|
||||||
```
|
```
|
||||||
|
|
||||||
|
## Prepend to existing array
|
||||||
|
Given a sample.yml file of:
|
||||||
|
```yaml
|
||||||
|
a:
|
||||||
|
- dog
|
||||||
|
```
|
||||||
|
then
|
||||||
|
```bash
|
||||||
|
yq '.a = ["cat"] + .a' sample.yml
|
||||||
|
```
|
||||||
|
will output
|
||||||
|
```yaml
|
||||||
|
a:
|
||||||
|
- cat
|
||||||
|
- dog
|
||||||
|
```
|
||||||
|
|
||||||
## Add new object to array
|
## Add new object to array
|
||||||
Given a sample.yml file of:
|
Given a sample.yml file of:
|
||||||
```yaml
|
```yaml
|
||||||
|
@ -499,3 +499,43 @@ b: !goat
|
|||||||
dog: woof
|
dog: woof
|
||||||
```
|
```
|
||||||
|
|
||||||
|
## Merging a null with a map
|
||||||
|
Running
|
||||||
|
```bash
|
||||||
|
yq --null-input 'null * {"some": "thing"}'
|
||||||
|
```
|
||||||
|
will output
|
||||||
|
```yaml
|
||||||
|
some: thing
|
||||||
|
```
|
||||||
|
|
||||||
|
## Merging a map with null
|
||||||
|
Running
|
||||||
|
```bash
|
||||||
|
yq --null-input '{"some": "thing"} * null'
|
||||||
|
```
|
||||||
|
will output
|
||||||
|
```yaml
|
||||||
|
some: thing
|
||||||
|
```
|
||||||
|
|
||||||
|
## Merging an null with an array
|
||||||
|
Running
|
||||||
|
```bash
|
||||||
|
yq --null-input 'null * ["some"]'
|
||||||
|
```
|
||||||
|
will output
|
||||||
|
```yaml
|
||||||
|
- some
|
||||||
|
```
|
||||||
|
|
||||||
|
## Merging an array with null
|
||||||
|
Running
|
||||||
|
```bash
|
||||||
|
yq --null-input '["some"] * null'
|
||||||
|
```
|
||||||
|
will output
|
||||||
|
```yaml
|
||||||
|
- some
|
||||||
|
```
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user