Linux 下shell中if分支结构

if 结构
if 语句
if 语句的结构如下:
单分支结构
if condition
then
statement1
statement2
..........

fi

双分支结构
if condition
then
statement1
statement2
..........
else
statement3
..........
fi

多分支结构
if condition1
then
statement1
statement2
..........
elif condition2
then
statement3
statement4
..........
elif condition3
then
statement5
statement6
..........
fi

多分支结构

if condition1
then
statement1
statement2
..........
elif condition2
then
statement3
statement4
..........
elif condition3
then
statement5
statement6
..........
else
statement7
..........
fi

if 语句使用举例
下面举几个使用 if 语句的例子:
例1:
#!/bin/bash
# filename: areyouok.sh
echo "Are you OK ?"
read answer
# 在 if 的条件判断部分使用扩展的 test 语句 [[...]]
# [[]] 中可以使用正则表达式进行条件匹配
if [[ $answer == [Yy]* || $answer == [Mm]aybe ]]
then
echo "Glad to hear it."
fi

例2:
#!/bin/bash
# filename: myssh.sh
# 在条件测试中判断位置参数的个数 $#
if [ "$#" -eq "2" ]; then
 ssh $1@$2
else
 echo "Usage: $0 <username> <FQDN or IPAdress>"
fi

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值