1、条件选择if语句
选择执行:
注意:if语句可嵌套
单分支
if 判断条件;then
条件为真的分支代码
fi
双分支
if 判断条件; then
条件为真的分支代码
else
条件为假的分支代码
fi
多分支
if 判断条件1; then
条件为真的分支代码
elif 判断条件2; then
条件为真的分支代码
elif 判断条件3; then
条件为真的分支代码
else
以上条件都为假的分支代码
fi
逐条件进行判断,第一次遇为“真”条件时,执行其分支,而后结束整个if语句
实例
#!/bin/bash
read -p "please input your age: " age
if [ "$age" -ge 18 ];then
echo "you are very old"
else
echo "you are a baby"
fi
#!/bin/bash
read -p "please input your score: " score
if [[ ! "$score" =~ ^[0-9]+$ ]];then
echo "your score is not integer"
exit
fi
if [ "$score" -lt 60 ];then
echo "your need study hard"
elif [ "$score" -ge 60 -a "$score" -lt 80 ];then
echo "your score is soso"
elif [ "$score" -ge 80 -a "$score" -le 100 ];then
echo "your score is very good"
else
echo "your score is invalied"
fi
2、条件判断:case语句
举例
#!/bin/bash
echo -e "menu:\n1:laimian\n2:huimian\n3:yangroutang\n4:gaifan\n5:jiaozi" ---
创建一个点菜的菜单,也可以用多行重定向
read -p "please input menu: " num---read定义变量num
case $num in ---这里是变量的值,而不是变量的名
1|2)
echo "price is 20"
;;
3|4)
echo "price is 20"
;;
5)
echo "price is 15"
;;
*)
echo "your eat is not have" ---最后一个分支可以加双分号也可以不加
esac
#!/bin/bash
read -p "please input yes or no: " ans
case $ans in
[Yy][eE][Ss]|[Yy])
echo "yes"
;;
[Nn][oO]|[nN])
echo "no"
;;
*)
echo "other"
;; ---也可以不加
esac
3、for循环
for 变量名in 列表;do
循环体
done
执行机制:
依次将列表中的元素赋值给“变量名”; 每次赋值后即执行一次循环体; 直到列表中的元素耗尽,循环结束。
列表生成方式:
(1) 直接给出列表
(2) 整数列表:
(a) {1..10} 表示1-10
(b) seq 10 表示1-10 seq 2 10 表示2-10 seq 2 3 10 表示2-10以3为步进即2 5 8
(3) 返回列表的命令
$(COMMAND)或者`COMMAND`
(4) 使用glob,如:*.sh
(5) 变量引用;
$@, $*
举例
[root@redhat7 app]#seq -s + 3 3 100 ---表示从3加到100,以3为步进
3+6+9+12+15+18+21+24+27+30+33+36+39+42+45+48+51+54+57
+60+63+66+69+72+75+78+81+84+87+90+93+96+99
[root@redhat7 app]#for id in 1 2 3 ;do echo $id;done ---表示把1 2 3分别赋值给id
1
2
3
[root@redhat7 app]#for id in *.sh;do chmod a-x $id;done ---表示把
当前目录下以.sh结尾的所有文件赋值给id
[root@redhat7 app]#for id in {1..3};do useradd user$id;done
[root@redhat7 app]#getent passwd |tail -n3
user1:x:1002:1002::/home/user1:/bin/bash
user2:x:1003:1003::/home/user2:/bin/bash
user3:x:1004:1004::/home/user3:/bin/bash
[root@redhat7 app]#echo user{1..3}|xargs -n1 userdel -r ---一次性
的删除多个用户,xargs必须用 -n1,表示一次只传递一个前面的参
数,因为useradd -r不能同时删除多个用户,只能一次删除一个用户
[root@redhat7 app]#getent passwd |tail -n3 ---可以看到已经删除
libai:x:1001:1001::/home/libai:/bin/bash
tss:x:59:59:Account used by the trousers package to sandbox the tcsd daemon:/dev/null:/sbin/nologin
apache:x:48:48:Apache:/usr/share/httpd:/sbin/nologin
[root@redhat7 app]#tr -dc '[[:alnum:]]'</dev/urandom |head -c 8
---因为/dev/urandom中生成的都是随机数,可以在这个文件中取一些
做为用户的密码,但这个文件里有很多二进制字符,所以只取数字和
字母做为密码
xrtol3bA
#!/bin/bash
>/app/user.log ---为了避免这个文件存在或者有其他内容,先清空这个文件
for i in {1..3};do ---将1 2 3分别赋值给i
if id user$i &>/dev/null;then ---如果用户存在则退出
echo "the user$i is exist"
exit 1
fi
useradd user$i && echo "the user$i is created" ---创建用户
passwd=`tr -dc '[[:alnum:]]'< /dev/urandom|head -c 8` ---设置随机密码
echo user$i:$passwd>>/app/user.log ---将用户名和密码存到一个
文件中,避免忘记,因为是随机密码,不好记,这样后面登录的时候
就可以对照这个文件进行登录
echo $passwd |passwd --stdin user$i &>/dev/null ---设置密码
passwd -e user$i &>/dev/null ---设置成下次登录强迫修改密码
done
#!/bin/bash
>/app/ip.log
netid=192.168.25
for id in {1..255};do
{
if ping -c1 -w1 $netid.$id &>/dev/null;then ---表示如果能ping通则将ip地址在屏幕上打印出来,并且存到文件中
echo $netid.$id |tee -a /app/ip.log
fi
}& ---为了提高速度,将if语句这个命令后台并行执行
done
wait ---表示后台执行完毕后返回退出状态
[root@redhat7 app]#vim juxing.sh
#!/bin/bash
for i in {1..10};do
for j in {1..10};do
echo -e '\033[31;43;5m♡\033[0m\c' ---\c表示最后不加上换行符,\033可以用\e表示都可以
done
echo ---换行
done
[root@redhat7 app]#./juxing.sh ---打印出来一个矩形
♡♡♡♡♡♡♡♡♡♡
♡♡♡♡♡♡♡♡♡♡
♡♡♡♡♡♡♡♡♡♡
♡♡♡♡♡♡♡♡♡♡
♡♡♡♡♡♡♡♡♡♡
♡♡♡♡♡♡♡♡♡♡
♡♡♡♡♡♡♡♡♡♡
♡♡♡♡♡♡♡♡♡♡
♡♡♡♡♡♡♡♡♡♡
♡♡♡♡♡♡♡♡♡♡
总结:如何打印出一个心形图案,先按crtl+k,再按小写的c和大写的H,for循环和case区别,case后面是变量引用,而for后面是变量名。
4、颜色的配色
# Attribute codes:
# 00=none字体颜色和背景颜色都去掉 01=bold加粗 04=underscore下划线05=blink闪烁 07=reverse字体颜色和背景颜色对调 08=concealed隐藏字体颜色
# Text color codes:
# 30=black 31=red 32=green 33=yellow 34=blue 35=magenta品红 36=cyan青色 37=white
# Background color codes:
# 40=black 41=red 42=green 43=yellow 44=blue 45=magenta 46=cyan 47=white
echo -e '\033[43;31;5mmagedu\033[0m' 表示插入背景色是黄色字
体是红色并且带闪烁的magedu