mirror of
https://github.com/mikefarah/yq.git
synced 2026-06-30 09:11:40 +00:00
Agent-Logs-Url: https://github.com/mikefarah/yq/sessions/928aabc5-ad71-41d8-94ab-403942e3f92d Co-authored-by: mikefarah <1151925+mikefarah@users.noreply.github.com>
859 B
859 B
System Operators
The system operator allows you to run an external command and use its output as a value in your expression.
Security warning: The system operator is disabled by default. You must explicitly pass --enable-system-operator to use it.
Usage
yq --enable-system-operator --null-input '.field = system("command"; "arg1")'
The operator takes:
- A command string (required)
- An argument or array of arguments separated by
;(optional)
The current matched node's value is serialised and piped to the command via stdin. The command's stdout (with trailing newline stripped) is returned as a string.
Disabling the system operator
The system operator is disabled by default. When disabled, a warning is logged and null is returned instead of running the command.
Use --enable-system-operator flag to enable it.