With
Use the with operator to conveniently make multiple updates to a deeply nested path, or to update array elements relatively to each other. The first argument expression sets the root context, and the second expression runs against that root context.
Update and style
Given a sample.yml file of:
a:
deeply:
nested: valuethen
yq 'with(.a.deeply.nested; . = "newValue" | . style="single")' sample.ymlwill output
a:
deeply:
nested: 'newValue'Update multiple deeply nested properties
Given a sample.yml file of:
a:
deeply:
nested: value
other: thingthen
yq 'with(.a.deeply; .nested = "newValue" | .other= "newThing")' sample.ymlwill output
a:
deeply:
nested: newValue
other: newThingUpdate array elements relatively
The second expression runs with each element of the array as it's contextual root. This allows you to make updates relative to the element.
Given a sample.yml file of:
myArray:
- a: apple
- a: bananathen
yq 'with(.myArray[]; .b = .a + " yum")' sample.ymlwill output
myArray:
- a: apple
b: apple yum
- a: banana
b: banana yumLast updated
Was this helpful?