0
点赞
收藏
分享

微信扫一扫

Shell编程及自动化运维(7)流程控制if

单分支结构

语法

if [ command/test ];then
符合该条件执行的语句
fi

示例

由用户输入用户名,如果用户不存在,则创建该用户

#!/bin/bash
read -p "Input username: " name
id $name &> /dev/null
if [ $? -ne 0 ]; then
useradd $name
fi


双分支结构

语法

if 条件测试
then
命令序列
else
命令序列
fi

示例

用户输入用户名, 如果用户不存在,则创建该用户,并设置密码为123456;否则,提示用户已经存在

#!/bin/bash
read -p "Input username: " name

#id $name &> /dev/null
#if [ $? -eq 0 ];then

if id $name &> /dev/null; then
echo "$name already exist"
else
useradd $name
echo "123456" | passwd --stdin $name &> /dev/null
echo "$name create finished,the password is 123456"
fi


多分支结构

语法

多分支结构
if 条件测试1
then 命令序列

elif 条件测试2
then 命令序列

elif 条件测试3
then 命令序列...

else 命令序列
fi

示例

取出系统时间的小时,对数字进行判断  

  •   6--10  this is morning  
  •   11-13  this is noon  
  •   14-18  this is afternoon  
  •   其他   this is night 
#!/bin/bash
hour=`date +%H`
if [ $hour -ge 6 -a $hour -le 10 ];then
echo "This is morning"
elif [ $hour -ge 11 -a $hour -le 13 ];then
echo "This is noon"
elif [ $hour -ge 14 -a $hour -le 18 ];then
echo "This is afternoon"
else
echo "This is night"
fi


嵌套结构

语法

if 条件测试1  then 命令序列
if 条件测试1 then 命令序列

else 命令序列
fi

else 命令序列
fi

示例Shell编程及自动化运维(7)流程控制if_linux

read -p "Input username: " name
id $name &> /dev/null

if [ $? -eq 0 ];then
echo "$name 存在"

else
useradd $name
echo "$name create finished"
read -p "请输入用户密码: " pass
if [ ${#pass} -ge 7 ];then
echo "$pass" | passwd --stdin $name
echo "$name 用户密码是 $pass"
else
echo "密码不合格"
fi

fi

调试脚本

  • sh -n 02.sh 仅调试脚本中的语法错误。
  • sh -vx 02.sh 以调试的方式执行,查询整个执行过程


举报

相关推荐

0 条评论