How to read values with yq when the key has a dot?

13.4k Views Asked by At

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?

1

There are 1 best solutions below

3
On BEST ANSWER

On v4 onwards, you could simply use the new syntax notation, i.e.

echo 'a:
 b.c: 2' | yq e '.a."b.c"' - 

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

echo 'a:
 b.c: 2' | yq r - 'a."b.c"'