I am having issues reading values from a YAML file when there's a dot in the key name.
i.e.
a:
b.c: 2
Reading the a
key works fine with cat mytext.yaml | yq r - a
. However, when I tried reading a.b.c
it doesn't give any output.
I tried escaping the dot symbol but that doesn't give any output.
Anything I am missing here?
On v4 onwards, you could simply use the new syntax notation, i.e.
In mikefarah/yq, you can use the quotes
".."
, to preserve the field containing.
in your path expression as explained in the documentation Nested special characters