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

Shell if...elif...fi 语句

时间:2016-05-09 18:56:22      阅读:204      评论:0      收藏:0      [点我收藏+]

标签:shell if...elif...fi 语句


#!/bin/sh


a=10

b=20


if [ $a == $b ]

then

   echo "a is equal to b"

elif [ $a -gt $b ]

then

   echo "a is greater than b"

elif [ $a -lt $b ]

then

   echo "a is less than b"

else

   echo "None of the condition met"

fi



本文出自 “系统网站运维” 博客,请务必保留此出处http://cgc243652136qq.blog.51cto.com/3989433/1771510

Shell if...elif...fi 语句

标签:shell if...elif...fi 语句

原文地址:http://cgc243652136qq.blog.51cto.com/3989433/1771510

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