标签: bash
我有一个为用户设置项目的bash脚本。有一部分只需要做一次。我想将整个脚本包装在一个If语句中,该语句检查环境变量是否退出。
if [ "$VAR" = "" ]; then do the part that only need to be set up once export VAR="yes" else do the rest of the build fi
脚本似乎没有意识到VAR中有一个值,它总是运行第一个语句。