if [ $b -gt 0 -o $c -gt 0 -a $a -gt 0 ]; then
.fi对shell中的关系运算符说明如下:-gt 表示greater than,大于-lt 表示less than,小于-eq 表示 equal,等于对shell中的连接符说明如下:-a 表示 and,且-o 表示 or,或 也可以写成这样:if [ $b -gt 0 ] || [ $c -gt 0 ] && [ $a -gt 0 ]; then.fi其中,&&表示and,||表示or本文共 303 字,大约阅读时间需要 1 分钟。
if [ $b -gt 0 -o $c -gt 0 -a $a -gt 0 ]; then
.fi对shell中的关系运算符说明如下:-gt 表示greater than,大于-lt 表示less than,小于-eq 表示 equal,等于对shell中的连接符说明如下:-a 表示 and,且-o 表示 or,或 也可以写成这样:if [ $b -gt 0 ] || [ $c -gt 0 ] && [ $a -gt 0 ]; then.fi其中,&&表示and,||表示or转载于:https://www.cnblogs.com/zwgblog/p/6013879.html