添加链接
link之家
链接快照平台
  • 输入网页链接,自动生成快照
  • 标签化管理网页链接
备案 控制台
学习
实践
活动
专区
工具
TVP
写文章
专栏首页 用户7095785的专栏 快速掌握shell脚本的各种循环语句
2 0

海报分享

快速掌握shell脚本的各种循环语句

#概览

shell的各种循环语句:for、while、until、select

1.for循环

#语法结构 #第一种:变量取值

for 变量名 in 变量取值表
for a in {1..9}
  mkdir dir$a
说明:创建9个目录,变量名a会依次从变量取值表中拿内容,一次取一个,知道取完

#第二种:C语言型for循环语句

for ((exp1;exp2;exp3))
for ((i=1;i<=3;i++))
    echo $i
#解释:i从1开始,当i<=3就可以运行,如果运行的值大于3,就退出循环
#语法结构讲解
for关键字后的双括号是三个表达式,
第一个是变量初始化(例如:i=1),第二个为变量的范围(例如i<=3),第三个为变量自增或自减(例如i++)。
当第一个表达式的初始化值符合第二个变量的范围时,就进行如循环执行,当条件不满足时就退出循环

#简单示例 #1.竖向打印1 2 3 4 5几个数字 #第一种方法:直接列出元素

[root@game scripts]# cat for1.sh 
#!/bin/bash
for i in 1 2 3 4 5
    echo $i
[root@game scripts]# sh for1.sh 
5

第二种方法:使用大括号{}生成数字序列

[root@game scripts]# cat for2.sh 
#!/bin/bash
for i in {1..5}
    echo $i
[root@game scripts]# sh for2.sh 
5

#第三种方法:使用seq生成数字序列

[root@game scripts]# cat for3.sh 
#!/bin/bash
for i in `seq 1 5`
    echo $i
[root@game scripts]# sh for3.sh 
5

#2.获取当前目录下的目录或文件名,并将其作为变量列表打印输出

#数据
[root@game ~]# mkdir -p /test/{test1.txt,test2.txt,guo.txt,ke.txt}
[root@game ~]# ls -l /test/
total 0
drwxr-xr-x. 2 root root 6 Aug 21 22:14 guo.txt
drwxr-xr-x. 2 root root 6 Aug 21 22:14 ke.txt
drwxr-xr-x. 2 root root 6 Aug 21 22:14 test1.txt
drwxr-xr-x. 2 root root 6 Aug 21 22:14 test2.txt
#编写脚本
[root@game scripts]# cat for4.sh 
#!/bin/bash
usage(){ #帮助函数
    echo "directory not found"
[ ! -d /test ] && usage && exit 1 #判断目录是否存在
cd /test
for i in `ls`
    echo $i
[root@game scripts]# sh for4.sh 
guo.txt
ke.txt
test1.txt
test2.txt

2.while循环

while一般应用场景是在守护进程程序或始终循环执行 #语法格式

while <条件表达式>
done

#简单示例

每隔2秒在屏幕上输出一次负载值
[root@game scripts]# cat while1.sh 
#!/bin/bash
while true
    uptime
    sleep 2 #暂停2秒再执行
#提示:while true表示条件永远为真,因此会一直运行,像死循环一样,称为守护进程
#效果:每隔2秒就输出一次
[root@game scripts]# sh while1.sh 
 23:11:35 up 2 days,  2:00,  2 users,  load average: 0.00, 0.01, 0.05
 23:11:37 up 2 days,  2:00,  2 users,  load average: 0.00, 0.01, 0.05
 23:11:39 up 2 days,  2:00,  2 users,  load average: 0.00, 0.01, 0.05

3.until循环

Until是当条件表达式不成立时,就会进入循环,当条件表达式成立时就终止循环 #语法格式

until <条件表达式>
done

#示例

#如果用户输出的是guoke就符合条件,退出循环,如果不是,用户输入3次之后就退出循环
[root@game scripts]# cat until1.sh
#!/bin/bash
until [ "$user" = "guoke" -o "$i" -gt 3 ]
    read -p "please enter you username:" user
    let i++
[root@game scripts]# sh until1.sh 
please enter you username:guoke
[root@game scripts]# sh until1.sh 
please enter you username:1
please enter you username:1
please enter you username:1
[root@game scripts]#

4.select循环

#介绍:select循环主要用于生成菜单,执行select循环的时候会打印一个菜单项,默认提示符#?

#语法格式

select 变量名 in [变量取值表]
done

#示例 用select循环打印菜单单项的多种实现方法

#第一种:直接使用列表字符串
[root@game scripts]# cat select1.sh 
#!/bin/bash
select name in apache httpd nginx tomcat
    echo $name
[root@game scripts]# sh select1.sh 
1) apache
2) httpd
3) nginx
4) tomcat
apache
nginx
tomcat
#? ^C
#第二种:采用数组做变量列表
[root@game scripts]# cat select2.sh 
#!/bin/bash
array=(apache nginx tomcat lighttpd)
select name in "${array[@]}"
    echo $name
[root@game scripts]# sh select2.sh 
1) apache
2) nginx
3) tomcat
4) lighttpd
tomcat
lighttpd
#? ^C

5.循环控制及状态返回值

break (循环控制) continue (循环控制) exit (退出脚本) return (退出函数)

#区别

break continue在条件语句及循环语句(for if while等)中用于控制程序的走向
exit是终止所有语句并退出脚本
return:仅用于在函数内部返回函数执行的状态值

#break示例

#如果i等于3,那么就终止循环
[root@game scripts]# cat break1.sh 
#!/bin/bash
for ((i=0;i<=5;i++))
    if [ $i -eq 3 ];then
  break
  echo $i
echo "1111"
yum install net-tools -y > /dev/null
[ $? -eq 0 ] && echo "already install"
[root@game scripts]# sh break1.sh 
already install
#说明:i等于3的时候就终止循环,但是没有跳出脚本

#exit示例

[root@game scripts]# cat exit1.sh
#!/bin/bash
for ((i=0;i<=5;i++))
    if [ $i -eq 3 ];then
  exit 1
  echo $i
echo "ok"
#执行效果
[root@game scripts]# sh exit1.sh
#说明:当i等于3的时候就会退出脚本了,就不会执行后面的语句

#continue示例

[root@game scripts]# cat con1.sh 
#!/bin/bash
for ((i=0;i<=5;i++))
    if [ $i -eq 3 ];then
  continue
  echo $i
echo "ok"
#执行效果
[root@game scripts]# sh con1.sh 
#说明:当i等于3的时候就跳过继续执行,不打印3
文章分享自微信公众号:
老油条IT记

本文参与 腾讯云自媒体分享计划 ,欢迎热爱写作的你一起参与!

作者: 老油条IT记
原始发表时间: 2020-08-23
如有侵权,请联系 cloudcommunity@tencent.com 删除。