mirror of
https://github.com/mikefarah/yq.git
synced 2026-06-26 23:17:43 +00:00
343 B
343 B
Eval
Use eval to dynamically process an expression - for instance from an environment variable.
eval takes a single argument, and evaluates that as a yq expression. Any valid expression can be used, beit a path .a.b.c | select(. == "cat"), or an update .a.b.c = "gogo".
Tip: This can be useful way parameterise complex scripts.