This commit is contained in:
Mike Farah
2022-04-15 08:52:46 +10:00
parent 91ac643fbf
commit 3fe9e55f36
3 changed files with 14 additions and 3 deletions
+3 -1
View File
@@ -135,7 +135,9 @@ a:
b:
- dog
- mouse
a3: {b: [mouse]}
a3:
b:
- mouse
```
## String concatenation
+5 -2
View File
@@ -199,7 +199,8 @@ yq '.a.b |= "bogs"' sample.yml
```
will output
```yaml
{a: {b: bogs}}
a:
b: bogs
```
## Update node value that has an anchor
@@ -229,6 +230,8 @@ yq '.a.b.[0] |= "bogs"' sample.yml
```
will output
```yaml
{a: {b: [bogs]}}
a:
b:
- bogs
```