码迷,mamicode.com
首页 > 其他好文 > 详细

bash算术求值和errexit陷阱

时间:2016-03-31 21:35:29      阅读:135      评论:0      收藏:0      [点我收藏+]

标签:

原文:https://www.technovelty.org//linux/bash-arithmetic-evaluation-and-errexit-trap.html

在 "traps for new players" 一章:

count=0
things="0 1 0 0 1"

for i in $things;
do
   if [ $i == "1" ]; then
       (( count++ ))
   fi
done

echo "Count is ${count}"

看上去非常正常?

我可能已经这么写好多次了。

但这是一个意想不到的错误:

((expression))
表达式按 ARITHMETIC EVALUATION 描写叙述的规则求值. 假设表达式的值非0。返回值为0; 否则返回值是1. 这个和let "expression"是同样的.

当你使用 -e或使能errexit运行该脚本时 -- 或许是因为脚本过大而变的不可信 -- count++ 将返回 0 (post-increment) 然后脚本就退出了. 这个陷阱须要注意!

bash算术求值和errexit陷阱

标签:

原文地址:http://www.cnblogs.com/gcczhongduan/p/5342798.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!