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

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了linux 几个控制流语句的格式例子(if语句)相关的知识,希望对你有一定的参考价值。

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语句)的主要内容,如果未能解决你的问题,请参考以下文章

python0.6-----条件控制语句/循环语句及使用技巧

python 流程控制(条件语句)

5 流控制语句

java控制流

流控制语句

linux shell 流程控制