码迷,mamicode.com
首页 > 系统相关 > 详细

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

时间:2018-11-10 00:58:14      阅读:210      评论:0      收藏:0      [点我收藏+]

标签:lease   数字   input   $2   指令   ash   The   定义变量   span   

#脚本编辑


 

#!/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
 

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

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

标签:lease   数字   input   $2   指令   ash   The   定义变量   span   

原文地址:https://www.cnblogs.com/lin666-/p/9937796.html

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