我收到以下错误消息: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