Setenv 列表编辑 Centos 5.11

Setenv 列表编辑 Centos 5.11

一直在寻找答案,但似乎没有什么能给我一个简单的答案(我不是计算机天才)。

我想在 centos 5.11 服务器上编辑其中一个变量(我使用 setenv 命令查看它们)。

我努力了:

bash -c "export [email protected]; echo \$MXIB_MAILLOGTO1"
(also tried) bash -c "set [email protected]; export MXIB_MAILLOGTO1; echo \$MXIB_MAILLOGTO1"

上面仍然打印旧值,而不是[电子邮件保护]

答案1

不需要启动子 shell,在当前 shell 中执行。

MXIB_MAILLOGTO1='[email protected]'
echo $MXIB_MAILLOGTO1

相关内容