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?