shell的执行流控制

shell中常用的循环语句

for循环

for 定义变量
do 使用变量,执行动作
done 结束标志

格式1:
#!/bin/bash
for WESTOS in seq 2 2 10
do
echo $WESTOS
done

格式2:
for WESTOS in 1 2 3
do
echo $WESTOS
done
在这里插入图片描述

格式3:
for WESTOS in {10…1}
do
echo $WESTOS
done

格式4:
for ((WESTOS=0;WESTOS<10;WESTOS++))
do
echo $WESTOS
done
在这里插入图片描述

在这里插入图片描述

脚本练习:

check_host.sh
用此脚本检测10台与您当前主机直连主机是否网络通常
如果网络通常请显示主机的ip列表!!!

#!/bin/bash
for IP in {1…10}
do
ping -w 1 172.25.254.KaTeX parse error: Expected 'EOF', got '&' at position 4: IP &̲> /dev/null &&{…IP
}
done

在这里插入图片描述

测试如下!
在这里插入图片描述

while

while true ####条件为真
do ####条件成立所作循环动作

done

#########################

until
作用:
条件为假执行动作
语句结构:
until false ####条件为假
do ####条件不成立所作循环动作

done

在这里插入图片描述

测试如下!
在这里插入图片描述

until实验!

在这里插入图片描述

测试如下:
如果 sh until.sh 后面是yes就会一直循环输出yes!!
不是yes就会输出no 并退出!!
在这里插入图片描述

if语句

作用:
多次判定条件执行动作


结构:
if ##首次判断条件
then ##条件成立时执行动作
elif ##当首次判定不成功时再次判定
then ##条件成立执行动作
… ##elif可以书写多次
else ##所有条件部成立执行动作
fi ##结束 (记得一定要结束家fi!)


在这里插入图片描述

测试如下!
在这里插入图片描述

实验:判断文件类型

要求:判断文件类型,写脚本名字为: check_file.sh


please input filename:file
file is not exist
file is file
file is direcory
此脚本会一直询问直到用户输入exit为止


在这里插入图片描述

测试如下:
在这里插入图片描述

sh -x test.sh westos
##查看执行流

+表示 没有错误!
在这里插入图片描述

case语句

实验1

#!/bin/bash
case $1 in
westos) ##如果输入为westos
echo linux ##输入为linux
;;
linux) ##如果输入为linux
echo westos ##输出westos
;;
*) ##其余的情况
echo java
esac ##结束
在这里插入图片描述

测试如下!

在这里插入图片描述

实验2

若是若中选择 可以加|增加条件!!
如下:
#!/bin/bash
case $1 in
westos|WESTOS)
echo linux
;;
linux|TEST|LINUX)
echo westos
;;
*)
echo error
esac ##结束

在这里插入图片描述

测试如下:
在这里插入图片描述

实验3

要求: 脚本名字为:setuser.sh


sh setuser.sh
[D]elete [C]reate [E]xit
Please input action:D Delete delete DELETE
Please input username:user1
user1存在:
删除user1并显示user1 is delete
Please input action

user1不存在:
user1 is not exist
Please input action:
Please input action: C c Create create CREATE
Please input username:user1

user1存在:
user1 is exist
Please input action;

user1不存在
建立user1 并输出user1 is created
Please input action

Please input action:E e Exit EXIT
显示bye 然后退出


在这里插入图片描述

测试如下:
在这里插入图片描述

添加用户之后查看以下
在这里插入图片描述

删除之后再查看以下:
在这里插入图片描述

实验4

先判断是否存在用户再执行删除或者创建或者退!
user1不存在:
user1 is not exist
Please input username:exit

在这里插入图片描述

在这里插入图片描述

测试如下:
在这里插入图片描述

在这里插入图片描述

expect(类似于shell,命令解释器)

expect看的是命令,而不是行数
问题脚本:
vim ask.sh
#!/bin/bash
read -p "Please input your name: " NAME
read -p "Please input your age: " AGE
read -p "Wich objective you study: " OBJ
read -p "Are you happy? " FEEL
echo “$NAME is $AGE’s old study $OBJ FEEL $FEEL”

应答脚本:
dnf install expect -y
chmod +x answer.exp
chmod +x ask.sh

expect版:
#!/usr/bin/expect
set timeout 3
set NAME [ lindex $argv 0 ]
set AGE [ lindex $argv 1 ]
set OBJ [ lindex $argv 2 ]
set FEEL [ lindex KaTeX parse error: Expected '}', got 'EOF' at end of input: …"name" { send "NAME\r";exp_continue }
“age” { send “KaTeX parse error: Can't use function '\r' in math mode at position 4: AGE\̲r̲";exp_continue …OBJ\r”;exp_continue }
“happy” { send “$FEEL\r” }
}
expect eof


先下载expect
在这里插入图片描述

vim ask.sh
在这里插入图片描述

vim answer.exp
在这里插入图片描述

然后记得增加执行权限!!!
在这里插入图片描述

将expect版转换为shell版本!!
shell版:

#!/bin/bash

/usr/bin/expect <<EOF
set timeout 3
spawn /mnt/ask.sh
expect {
“name” { send “$1\r”;exp_continue }
“age” { send “$2\r”;exp_continue }
“objective” { send “$3\r”;exp_continue }
“happy” { send “$4\r” }
}
expect eof
EOF

在这里插入图片描述

测试如下:
在这里插入图片描述

脚本练习

host_list.sh
检测172.25.254.1-172.25.254.10网络是否开启
如果网络正常请生成解析列表host_list
格式如下:
ip 主机名称
例如:172.25.254.1为开启状态主机名为westos_student1.westos.org
hosts_list中
172.25.254.1 westos_student1.westos.org


在这里插入图片描述

测试如下:
在这里插入图片描述

break,continue,exit

continue ##终止当此次前循环提前进入下个循环
break ##终止当前所在语句所有动作进行语句外的其他动作
exit ##脚本退出

continue如下:
在这里插入图片描述

测试如下:
在这里插入图片描述

break如下:
在这里插入图片描述

测试如下:
在这里插入图片描述

exit如下:
在这里插入图片描述
测试如下:
在这里插入图片描述


由此可以看出:
continue是阻止continue前的循环 ,然后进入下个循环 且都会执行!
break是终止当前动作,但是其他动作还是会完成!!
exit是到此直接结束 不会执行后面的动作!!


评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包

打赏作者

dudududu--

你的鼓励将是我创作的最大动力

¥1 ¥2 ¥4 ¥6 ¥10 ¥20
扫码支付:¥1
获取中
扫码支付

您的余额不足,请更换扫码支付或充值

打赏作者

实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

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

余额充值