Read
Returns matching nodes/values of a path expression for a given yaml document
yq r <yaml_file|json_file> <path_expression>Returns the matching nodes of the path expression for the given yaml file (or STDIN).
See docs for path expression for more details.
Basic
Given a sample.yaml file of:
b:
c: 2then
yq r sample.yaml b.cwill output the value of '2'.
From Stdin
Given a sample.yaml file of:
cat sample.yaml | yq r - b.cwill output the value of '2'.
Default values
Using the --defaultValue/-D flag you can specify a default value to be printed when no matching nodes are found for an expression
yq r sample.yaml --defaultValue frog path.not.therewill yield (assuming path.not.there does not match any nodes):
frogPrinting matching paths
By default, yq will only print the value of the path expression for the yaml document. By specifying --printMode or -p you can print the matching paths.
a:
thing_a:
animal: cat
other:
animal: frog
thing_b:
vehicle: carPath Only
yq r --printMode p "a.thing*.*"will print
a.thing_a.animal
a.thing_b.vehiclePath and Value
yq r --printMode pv "a.thing*.*"will print
a.thing_a.animal: cat
a.thing_b.vehicle: carCollect results into an array
By default, results are printed out line by line as independent matches. This is handy for both readability as well as piping into tools like xargs. However, if you would like to collect the matching results into an array then use the --collect/-c flag. This is particularly useful with the length flag described below.
Given:
a:
thing_a:
animal: cat
other:
animal: frog
thing_b:
vehicle: caryq r sample.yaml --collect a.*.animalwill print
- cat
- frogPrinting length of the results
Use the --length/-l flag to print the length of results. For arrays this will be the number of items, objects the number of entries and scalars the length of the value.
Given
animals:
- cats
- dog
- cheetahyq r sample.yml --length animalswill print
3Length of filtered results
By default, filtered results are printed independently so you will get the length of each result printed on a separate line:
yq r sample.yaml --length --printMode pv 'animals.(.==c*)'animals.[0]: 4
animals.[2]: 7However, you'll often want to know the count of the filtered results - use the --collect flag to collect the results in the array. The length will then return the size of the array.
yq r sample.yaml --length --collect 'animals.(.==c*)' 2Anchors and Aliases
The read command will print out the anchors of a document and can also traverse them.
Lets take a look at a simple example file:
foo: &foo
a: 1
foobar: *fooPrinting anchors
yq r sample.yml foowill print out
&foo
a: 1Similarly,
yq r sample.yml foobarprints out
*fooTraversing anchors
To traverse an anchor, we need to either explicitly reference merged in values:
yq r sample.yml foobar.ato get
1or we can use deep splat to get all the values
yq r sample.yml -p pv "foobar.**"prints
foobar.a: 1The same methods work for the <<: [*blah, *thing]anchors.
Exploding Anchors
By default anchors are not exploded (or expanded/de-referenced) for viewing, and the yaml is shown as-is. Use the --explodeAnchors/-X flag to show the anchor values.
Given sample.yml:
foo: &foo
a: original
thing: coolasdf
thirsty: yep
bar: &bar
b: 2
thing: coconut
c: oldbar
foobarList:
<<: [*foo,*bar]
c: newbarThen
yq r -X sample.yml foobarListyields
c: newbar
b: 2
thing: coconut
a: original
thirsty: yepNote that yq processes the merge anchor list in reverse order, to ensure that the last items in the list override the preceding.
Multiple Documents
Reading from a single document
Given a sample.yaml file of:
something: else
---
b:
c: 2then
yq r -d1 sample.yaml b.cwill output the value of '2'.
Read from all documents
Reading all documents will return the result as an array. This can be converted to json using the '-j' flag if desired.
Given a sample.yaml file of:
name: Fred
age: 22
---
name: Stella
age: 23
---
name: Android
age: 232then
yq r -d'*' sample.yaml namewill output:
Fred
Stella
AndroidLast updated
Was this helpful?