From 8fc8eedd3bf30720ca7fcdfcd8f09aae6aa49ed3 Mon Sep 17 00:00:00 2001 From: Mike Farah Date: Sat, 6 Jun 2026 16:14:35 +1000 Subject: [PATCH] Minor doc update --- pkg/yqlib/doc/operators/system-operators.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkg/yqlib/doc/operators/system-operators.md b/pkg/yqlib/doc/operators/system-operators.md index df1a76cd..de0a8caf 100644 --- a/pkg/yqlib/doc/operators/system-operators.md +++ b/pkg/yqlib/doc/operators/system-operators.md @@ -51,7 +51,7 @@ country: Australia ``` then ```bash -yq --security-enable-system-operator '.country = system("/usr/bin/echo"; "test")' sample.yml +yq --security-enable-system-operator '.country = system("/bin/echo"; "test")' sample.yml ``` will output ```yaml @@ -67,7 +67,7 @@ a: hello ``` then ```bash -yq --security-enable-system-operator '.a = system("/usr/bin/echo")' sample.yml +yq --security-enable-system-operator '.a = system("/bin/echo")' sample.yml ``` will output ```yaml