语法错误:预期的操作数(错误标记为“ +”)

时间:2020-10-29 17:50:59

标签: linux bash shell

我收到以下错误消息:line 12: 470 + : syntax error: operand expected (error token is "+ ")

最后我仍然得到470的答案,但是此错误消息显示在输出中,我无法理解为什么。有人可以解释一下吗?

这是我的代码:

while IFS= read -r var
do
total=$(($total+$var))
done<"$input"

 

echo "The total is = $total";
echo

我每次的最终输出:

 line 12: 470 + : syntax error: operand expected (error token is "+ ")
The total is = 470

0 个答案:

没有答案