我有$weMountedBoot
在我的脚本的开始设置为false这样的:
weMountedBoot=false
现在,如果它没有安装,因此条件代码运行,我得到这个错误,variables没有设置为true:
./verifyBootFiles: line 41: false=true: command not found
相关代码:
if ! mount | grep "/boot" > /dev/null then sudo mount -r -U $toCheck $mountPoint $weMountedBoot=true fi
怎么了? 正如你可能认为我真的很喜欢shell脚本,并有许多经验…所以任何其他关于代码的评论也是受欢迎的。
只要删除前导$
。
$weMountedBoot=true
将是weMountedBoot=true
。