Working with JSON
Yaml to Json
b:
c: 2yq r -j sample.yaml{"b":{"c":2}}yq r --prettyPrint -j sample.yaml{
"b": {
"c": 2
}
}Multiple matches
Json to Yaml
Last updated
b:
c: 2yq r -j sample.yaml{"b":{"c":2}}yq r --prettyPrint -j sample.yaml{
"b": {
"c": 2
}
}Last updated
bob:
c: 2
bab:
c: 5yq r -j sample.yaml b*{"c":2}
{"c":5}{"a":"Easy! as one two three","b":{"c":2,"d":[3,4]}}yq r --prettyPrint sample.jsona: Easy! as one two three
b:
c: 2
d:
- 3
- 4