Bash - 如何在子shell字符串中强制使用文字?

时间:2016-08-25 14:17:35

标签: bash variables sudo variable-expansion

我想在使用sudo bash -c执行shell命令时控制变量扩展。

我知道我可以从普通的shell中做到这一点:

bash$ export FOO=foo
bash$ export BAR=bar
bash$ echo "expand $FOO but not "'$BAR'""
expand foo but not $BAR

如何使用sudo bash -c完成上述操作?

bash$ sudo bash -c "echo "expand $FOO but not "'$BAR'"""
expand
bash$ sudo bash -c 'echo "expand $FOO but not "'$BAR'""'
expand  but not bar

2 个答案:

答案 0 :(得分:3)

您可以将此功能用于您不想扩展的转义$

$> bash -c "echo \"expand $FOO but not \"'\$BAR'"
expand foo but not $BAR

但是我建议使用here-doc来避免转义:

# original echo replaced with printf
$> printf 'expand %s but not %s\n' "$FOO" '$BAR'
expand foo but not $BAR

# prints in here-doc with bash
$> bash<<-'EOF'
printf 'expand %s but not %s\n' "$FOO" '$BAR'
EOF
expand foo but not $BAR

答案 1 :(得分:0)

传递参数而不是尝试生成要传递给bash的字符串。

$ bash -c 'echo "expand $1 but not $2"' _ "$FOO" '$BAR'
expand 5 but not $BAR

_只是在$0指定的脚本中设置-c的虚拟值。)