Shell编程之if简单判断两个数字大小

Posted lin666-

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Shell编程之if简单判断两个数字大小相关的知识,希望对你有一定的参考价值。

#脚本编辑


 

#!/bin/bash

#定义变量
num1=$1
num2=$2
 
#判断是否输入两个参数,若是,将两个参数传递给下一个指令动作,若非两个参数,则打印输出内容输出并且退出exit脚本不执行下一个指令
if [ $# -ne 2 ] ;then
   echo ‘please input num1 & num2:‘
exit
fi
 
#以上判断后,输入的两个参数将传递到如下指令判断
if [ $num1 -gt $num2 ] ; then
   echo $num1 great than $num2
 
else if [ $num1 -lt $num2 ] ; then
   echo $num1 less than $num2
 
else
   echo $num1 equal $num2
 
fi  
fi
 

 
#验证是否正确
 
[[email protected] scripts]# sh compare2.sh 66
please input num1 & num2:
[[email protected] scripts]# sh compare2.sh 10 10
10 equal 10
[[email protected] scripts]# sh compare2.sh 10 1
10 great than 1
[[email protected] scripts]# sh compare2.sh 10 50
10 less than 50
[[email protected] scripts]# sh compare2.sh 6 7 8 9 10
please input num1 & num2:
 
 
 

以上是关于Shell编程之if简单判断两个数字大小的主要内容,如果未能解决你的问题,请参考以下文章

shell编程之 if 判断语句

shell编程之if语句

Shell 脚本之 if 判断

shell编程中使用IF判断

shell编程,读取一个数,判断这个数是奇数还是偶数

linux12shell编程 -->流程if判断1