石小疯 发表于 2024-11-10 05:02:23

shell脚本--流程控制-while循环

while在shell中也是负责循环的语句,和for一样。由于功能一样,许多人在学习和工作中的脚本遇到循环到底该利用for还是while呢?许多人不知道,就作育了有人一遇到循环就是for或者一位的while。我个人认为可以按照我说的这个思想来利用,既知道循环次数就可以用for,比如说一天需要循环24次;如果不知道代码要循环多少次,那就用while,比如我们作业中要求写的猜数字,每个人猜对一个数字的次数都是不能固定的,也是未知的。所以如许的循环我就发起大家用while了。
一、while介绍

特点:条件为真就进入循环;条件为假就退出循环,一般应用在未知循环次数的环境。
1.1、while语法

while [ 表达式 ]
    do
      command...
    done
   
while[ 1 -eq 1 ]  或者 (( 1 > 2 ))
do
    command
    command
    ...
done 案例 利用for循环和while循环分别循环打印数组1-5
案例代码
for循环打印:
for ((i=1;i<=5;i++))
do
    echo $i
done

while循环打印:
#打印数字1-5
#!/bin/bash
#
#Author: www.zutuanxue.com
#Created Time:
#Release:
#Description: 打印1-5

num=1
while [ $num -le 5 ]
do
   echo $num
   let num++
done 备注: 知道循环次数就可以用for,比如说一天需要循环24次;如果不知道代码要循环多少次,那就用while,比如我们作业中要求写的猜数字,每个人猜对一个数字的次数都是不能固定的,也是未知的。
二、while与shell运算

2.1、比较运算

案例: 循环交互输入一个小写字母,按Q退出循环
案例代码
#按Q退出场景
#!/bin/bash
#
#Author: www.zutuanxue.com
#Created Time:
#Release:
#Description:
read -p "请输入一个小写字母,按Q退出: " choose
while [ $choose != 'Q' ]
do
    echo "你输入的是: $choose"
    read -p "请输入一个小写字母,按Q退出: " choose
done 2.2、逻辑运算

案例: 利用循环语句帮助丈母娘批量选择女婿
案例代码
#!/bin/bash
#
#Author: www.zutuanxue.com
#Created Time:
#Release:
#Description:

#丈母娘选女婿分别按照姑娘2030   40 进行与或非模拟

#1.第一个应征者回答
read -p "你有多少钱: " money
read -p "你有多少车: " car
read -p "你家房子有几套: " house


#while [ $money -lt 10000 ]&&[ $car -lt 1 ]&&[ $house -lt 2 ]
while [ $money -lt 10000 ]||[ $car -lt 1 ]||[ $house -lt 2 ]
do
    #应征者不满住条件开始下一次循环
    echo "有请下一个"
    read -p "你有多少钱: " money
    read -p "你有多少车: " car
    read -p "你家房子有几套: " house
done

#应征者满足条件
echo"乖女婿,你怎么才来啊!女儿给你了" 2.3、文件范例判断

案例: 利用循环判断/tmp/xxx目录下的文件,如果不是文件范例的打印字符串"目录"
案例代码
文件类型判断
#!/bin/bash
#
#Author: www.zutuanxue.com
#Created Time:
#Release:
#Description:

while [ ! -f /tmp/xxx ]
do
  echo “目录”
  sleep 1
done 2.4、特殊条件

while语句中可以利用特殊条件来进行循环:


[*] 符号":" 条件代表真,适用与无穷循环
[*] 字符串 “true” 条件代表真,适用与无穷循环
[*] 字符串 "false"条件代表假
代码展示
特殊符号 :代表真
#!/bin/bash
#
#Author: www.zutuanxue.com
#Created Time:
#Release:
#Description:

while :
do
  echo haha
  sleep 1
done


true 字符串代表真,和:类似
#!/bin/bash
#
#Author: www.zutuanxue.com
#Created Time:
#Release:
#Description:

while true
do
  echo haha
  sleep 1
done


false   字符串代表假,在while中不会开始循环 三、while与循环控制语句

3.1、sleep语句

#!/bin/bash
#
#Author: www.zutuanxue.com
#Created Time:
#Release:
#Description: 倒计时游戏

#1.定义初始值
time=9

#2.循环输出,1秒一次
while [ $time -ge 0 ]
do
    echo -n -e"\b$time"
    let time--
    #控制循环 1秒一次
    sleep 1
done

#回车
echo 3.2、break

#!/bin/bash
#
#Author: www.zutuanxue.com
#Created Time:
#Release:
#Description: 输出数字1-9,当输出5时停止

#1、定义初始值
num=1

while [ $num -lt 10 ]
do
    echo $num

    #判断当前num的值,如果等于5就跳出循环
    if [ $num -eq 5 ]
     then
      break
    fi

    #自动累加
    let num++
done 3.3、continue

#!/bin/bash
#
#Author:
#Created Time:
#Release:
#Description: 输出数字1-9,当等于5时跳过本次循环,输出1、2、3、4、6、7、8、9

#1、定义初始值
num=0

while [ $num -lt 9 ]
do
   #自动累加
   let num++
   
   #判断当前num的值,如果等于5就跳过本次循环
   if [ $num -eq 5 ]
      then
                continue
   fi

   #输出num的值
   echo $num
done 四、while嵌套其他语句

4.1、while嵌套if

#!/bin/bash
#
#Author: www.zutuanxue.com
#Created Time:
#Release:
#Description: 输出数字1-9,当输出5时停止

#1、定义初始值
num=1

while [ $num -lt 10 ]
do
   echo $num

   #判断当前num的值,如果等于5就跳出循环
   if [ $num -eq 5 ]
      then
                break
   fi

   #自动累加
   let num++
done 4.2、while嵌套for

#!/bin/bash
#
#Author: www.zutuanxue.com
#Created Time:
#Release:
#Description: 99乘法表

A=1
while [ $A -lt 10 ]
do
    for ((B=1;B<=$A;B++))
       do
          echo -n -e "$B*$A=$((A*B)) \t"
   done
   echo
   let A++
done 4.3、while嵌套while

#!/bin/bash
#
#Author: www.zutuanxue.com
#Created Time:
#Release:
#Description: 99乘法表

#定义A
A=1
while [ $A -lt 10 ]
do
      #定义B
      B=1
      while [ $B -le $A ]
      do
          echo -n -e "$B*$A=$((A*B)) \t"
          let B++
      done

   echo
   let A++
done 五、学习视频

视频:while介绍 视频:while与shell运算 视频:while循环控制 视频: while嵌套

免责声明:如果侵犯了您的权益,请联系站长,我们会及时删除侵权内容,谢谢合作!更多信息从访问主页:qidao123.com:ToB企服之家,中国第一个企服评测及商务社交产业平台。
页: [1]
查看完整版本: shell脚本--流程控制-while循环