一、shell条件语句(if用法) if语句结构[if/then/elif/else/fi] if 条件测试语句 then action [elif 条件 action else action ] fi
一、shell条件语句(if用法)
if语句结构[if/then/elif/else/fi]
if 条件测试语句
then
action
[elif 条件
action
else
action
]
fi
[chengmo@Centos5 ~]$ a=5;if [[ a -gt 4 ]] ;then echo 'ok';fi;
ok
实例:(test.sh)
#!/bin/sh
scores=40;
if [[ $scores -gt 90 ]]; then
echo "very Good!";
elif [[ $scores -gt 80 ]]; then
echo "good!";
elif [[ $scores -gt 60 ]]; then
echo "pass!";
else
echo "no pass!";
fi;
条件测试有:[[]],[],test 这几种,注意:[[]] 与变量之间用空格分开。
二、循环语句(for,while,until用法):
1.for循环使用方法(for/do/done)
语法结构:
1.for … in 语句
for 变量 in seq字符串
do
action
done
实例(testfor.sh):
#!/bin/sh
for i in $(seq 10); do
echo $i;
done;
seq 10 产生 1 2 3 。。。。10空格分隔字符串。
2.for((赋值;条件;运算语句))
for((赋值;条件;运算语句))
do
action
done;
#!/bin/sh
for((i=1;i<=10;i++));do
echo $i;
done;
3.while循环使用(while/do/done)
while语句结构
while 条件语句
do
action
done;
实例1:
#!/bin/sh
i=10;
while [[ $i -gt 5 ]];do
echo $i;
((i--));
done;
sh testwhile1.sh
10
9
8
7
6
实例2:(循环读取文件内容:)
#!/bin/sh
while read line;do
echo $line;
done < /etc/hosts;
运行结果:===================
sh testwhile2.sh
# Do not remove the following line, or various programs
# that require network functionality will fail.
127.0.0.1 centos5 localhost.localdomain localhost
4.until循环语句
语法结构:
until 条件
do
action
done
意思是:直到满足条件,就退出。否则执行action.
实例(testuntil.sh):
#!/bin/sh
a=10;
until [[ $a -lt 0 ]];do
echo $a;
((a—));
done;
sh testuntil.sh
10
9
8
7
6
5
4
3
2
1
0
三、shell选择语句(case、select用法)
1.case选择语句使用(case/esac)
语法结构
case $arg in
pattern | sample) # arg in pattern or sample
pattern1) # arg in pattern1
*) #default
esac
说明:pattern1 是正则表达式,可以用下面字符:
* 任意字串
? 任意字元
[abc] a, b, 或c三字元其中之一
[a-n] 从a到n的任一字元
| 多重选择
实例:
#!/bin/sh
case $1 in
start | begin)
echo "start something"
stop | end)
echo "stop something"
*)
echo "Ignorant"
esac
testcase.sh start
start something
2.select语句使用方法(产生菜单选择)
语法:
select 变量name in seq变量
do
action
done
#!/bin/sh
select ch in "begin" "end" "exit"
do
case $ch in
"begin")
echo "start something"
"end")
echo "stop something"
"exit")
echo "exit"
break;
*)
echo "Ignorant"
esac
done;
--结束END--
本文标题: linux shell流程控制语句实例讲解(if、for、while、case语句实例)
本文链接: https://lsjlt.com/news/17827.html(转载时请注明来源链接)
有问题或投稿请发送至: 邮箱/279061341@qq.com QQ/279061341
2024-03-01
2024-03-01
2024-03-01
2024-03-01
2024-03-01
2024-02-29
2024-02-29
2024-02-29
2024-02-29
2024-02-29
回答
回答
回答
回答
回答
回答
回答
回答
回答
回答
0