shell语言,判断一个数字与10的大小

代码如下:
read num
#echo $num
if [ $num -lt 10 ]
  then
         echo "${num}<10"
elif [ $num -gt 10 ]
   then
        echo "${num}>10"
else
   echo "=10" 
fi

执行结果:

root@lhb:/opt/temp# ./shell.sh 
10
=10
root@lhb:/opt/temp# ./shell.sh 
5
5<10
root@lhb:/opt/temp# ./shell.sh 
11
11>10
root@lhb:/opt/temp# 

你可能感兴趣的:(Shell和linux)