在bash中,如果我跑步
(foo=14)
然后稍后尝试在我的bash脚本中引用该变量:
echo "${foo}"
我什么都没得到。如何让bash像我需要的那样存储此变量?
具体来说,我在if语句中使用此代码并检查退出代码,例如:
if (bar="$(foo=14;echo "${foo}"|tr '1' 'a' 2>&1)")
then
echo "Setting "'$bar'" was a success. It is ${bar}"
else
echo "Setting "'$bar'" failed with a nonzero exit code."
fi
答案 0 :(得分:4)
括在括号中的命令,例如()
在子外壳程序中执行。子外壳中的任何分配都不会存在于该子外壳之外。
foo=14
bar=$(echo $foo | tr '1' 'a' )
if [[ $? -eq 0 ]]
then
echo "Setting "'$bar'" was a success. It is ${bar}"
else
echo "Setting "'$bar'" failed with a nonzero exit code."
fi