shell中的比较运算符
-eq //等于
-ne //不等于
-gt //大于 (greater)
-lt //小于 (less)
-ge //大于等于
-le //小于等于
在今天的Linux——shell命令实验中,
执行.sh脚本:
if ((a<60)); then
echo "You didn't pass the exam."
fi
发现会报错,上网搜了一波发现是因为单括号引起的,
将代码更改为:
关键————> if [ $a -lt 60 ]; then
echo "You didn't pass the exam."
fi
问题就得到解决了!
一句话总结:filename.sh中的条件判断语句需要使用[ ],[ ]需要使用shell中的比较运算符。
标签:shell,Linux,pass,echo,运算符,等于 From: https://www.cnblogs.com/smallhuang/p/17847019.html