Need to escape single quotes in bash, updated docs #1932

This commit is contained in:
Mike Farah 2024-02-02 14:59:08 +11:00
parent f46e04d6f2
commit 461bb9c5fe

View File

@ -168,8 +168,8 @@ fruit:
then then
```bash ```bash
yq '.[] |( yq '.[] |(
( select(kind == "scalar") | key + "='" + . + "'"), ( select(kind == "scalar") | key + "='\''" + . + "'\''"),
( select(kind == "seq") | key + "=(" + (map("'" + . + "'") | join(",")) + ")") ( select(kind == "seq") | key + "=(" + (map("'\''" + . + "'\''") | join(",")) + ")")
)' sample.yml )' sample.yml
``` ```
will output will output
@ -203,8 +203,8 @@ deep:
then then
```bash ```bash
yq '.. |( yq '.. |(
( select(kind == "scalar" and parent | kind != "seq") | (path | join("_")) + "='" + . + "'"), ( select(kind == "scalar" and parent | kind != "seq") | (path | join("_")) + "='\''" + . + "'\''"),
( select(kind == "seq") | (path | join("_")) + "=(" + (map("'" + . + "'") | join(",")) + ")") ( select(kind == "seq") | (path | join("_")) + "=(" + (map("'\''" + . + "'\''") | join(",")) + ")")
)' sample.yml )' sample.yml
``` ```
will output will output