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

linux 几个控制流语句的格式例子(if语句)

时间:2016-12-29 07:40:12      阅读:223      评论:0      收藏:0      [点我收藏+]

标签:condition   控制   语句   less   结合   命令   if语句   numbers   方式   

linux 几个控制流语句的格式例子:
if 语句例子;
#!/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


if ... else 语句也可以写成一行,以命令的方式来运行
if test $[2*3] -eq $[1+5]; then echo ‘The two numbers are equal!‘; fi;
if ... else 语句也经常与 test 命令结合使用
num1=$[2*3]
num2=$[1+5]
if test $[num1] -eq $[num2]
then
echo ‘The two numbers are equal!‘
else
echo ‘The two numbers are not equal!‘
fi

linux 几个控制流语句的格式例子(if语句)

标签:condition   控制   语句   less   结合   命令   if语句   numbers   方式   

原文地址:http://www.cnblogs.com/chenxiaoyong/p/6230887.html

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