我想在使用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
答案 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
的虚拟值。)