Alpine Linux (ash busybox) 中带有转义字符的 If 语句

If statements with escape characters in Alpine Linux (ash busybox)

我有简单的脚本来准备文件,它按预期工作。所有代码都在docker image alpine:latest处执行(so ash busybox)

echo "credentials \"url.com\" {token = \"${VALUE}\"}" > ~/.terraformrc

稍后我想准备测试,为此我使用了 if [[ ]] 语法。

if [[ $(cat ~/.terraformrc) != "credentials \"url.com\" {token =\"VALUE\" }" ]]; then exit 1; fi

在 Bash 上测试有效,但在 ash/busybox/alpine 上我得到

sh: "url.com": unknown operand

同样在 ash/busybox/alpine 上,当我回显时,所有内容都正确转义

echo "credentials \"url.com\" {token = \"VALUE\" }"
credentials "url.com" {token = "VALUE" }

我应该如何在 [ ] 或 [[ ]] 中转义 " ? 感谢帮助

[[ ]] 用于 bash,对于 ash 你应该使用 POSIX [ ] 代替:

#!/bin/sh

value=VALUE001

echo "credentials \"url.com\" {token = \"$value\"}" > ~/.terraformrc

if [ "$(cat ~/.terraformrc)" != "credentials \"url.com\" {token =\"VALUE001\" }" ]
then
    exit 1
fi

顺便说一句,您正确地进行了转义,但是您忘记了双引号 $(cat ~/.terraformrc)