Linux中shell的执行流控制

执行流就是在脚本中记录的命令执行顺序
默认执行流是从上到下依次执行的

# 1.for语句

- #### 作用

  为循环执行动作

- #### for语句结构

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

- #### for语句的基本格式

  ###### 格式1:

  `#!/bin/bash`
  `for WESTOS in $(seq 1 2 10)`
  `do`
          `echo $WESTOS`
  `done`

  ###### 格式2:

  `for WESTOS in westos linux lee`
  `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列表

user_list.sh 后面没文件报错
    文件不存在报错
    检测文件中指定的用户是否存在
    存在显示 不存在建立

 

 

# 2.条件语句

- #### while...do语句

  ##### 作用:

  条件为真执行动作

  ##### 语句结构

  `while ture`    <!--条件为真-->
  `do`                    <!--条件成立所作循环动作-->

  `done`                <!--结束-->

- #### until...do 语句

  ##### 作用:

  条件为假执行动作

  ##### 语句结构

  `until false`         <!--条件为假-->
  `do`                            <!--条件不成立所作循环动作-->

  `done`                        <!--结束-->

- #### if...then...elif...then...else...fi 语句

  ##### 作用:

  多次判定条件执行动作

  ##### 代码结构

  `if`                        <!--首次判断定-->
  `then`                    <!--条件成立执行动作-->
  `elif`                    <!--当首次判定不成立时再次判定-->
  `then`                    <!--条件成立执行动作-->
  `...`                      <!--elif可以书写多次-->
  `else`                    <!--所有条件不成立执行动作-->
  `fi`                        <!--结束-->

#### 脚本练习:

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

 

 

5.case
case $1 in
    word1|WORD1)
    action1
    ;;
    word2|WORD2)
    action2
    ;;
    *)
    action3
esac

在对于信息选择过程中用判断选择信息效率很低

case语句对于选择条件的执行

只需判定一次

脚本练习
case.sh add
please input username:123
useradd 123
case.sh del
please input username:123
userdel 123

 

 

脚本练习

        要求:

        please input action: exit / add /del   (other:wrong action)

        exit :close script

        add:        please input username

                        exist ----->is exit---->input username

                        not exit -----> create and passwd

                        exit -------->action

        del          please input username

                        exist ----->delete

                        not exist -----> is not exist------>input username

                        exit -------->action

 

 

 

6.expect
问题脚本
#!/bin/bash
read -p "what's your name:" NAME
read -p "How old are you: " AGE
read -p "Which objective: " OBJ
read -p "Are you ok? " OK

echo $NAME is $AGE\'s old study $OBJ feel $OK

dnf install expect -y

应答脚本
#!/usr/bin/expect
set timeout 1
set NAME [ lindex $argv 0 ]
set AGE  [ lindex $argv 1 ]
set OBJ     [ lindex $argv 2 ]
set FEEL [ lindex $argv 3 ]
spawn /mnt/ask.sh
expect {
    "name"        { send "$NAME\r";exp_continue }
    "old"        { send "$AGE\r";exp_continue }
    "objective"    { send "$OBJ\r";exp_continue }
    "ok"        { send "$FEEL\r" }
}
expect eof


最后一个问题必须存在
问题的顺序没有要求
expect eof  问题完毕后退出expect
interact    问题回答完后保留expect环境
两个参数2选1

 

 

 

 

 交互:

 

 

脚本练习
host_list.sh

检测172.25.254.1-172.25.254.10网络是否开启

格式如下

ip    主机名称

例如:172.25.254.1为开启状态主机名为westos_student1.westos.org

 

7.break,continue,exit

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

 for N in {1..10}
  do
    if [ "$N" -eq "4" ]
    then
    echo lunk number !!
    #continue
    #break
    exit
    fi
    echo $N
  done
  echo westos linux


exit 退出值

ping 172.25.254.77 &> /dev/null
echo $? 查看退出值
0表示命令无任何报错 非0表示有相应报错

设定退出值 exit 66
退出值范围0-225

 

 

 

 

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值