续Shell脚本学习 Day5

安装lnmp/lamp脚本开发

要求

编写脚本,根据用户输入选择判断模拟安装lnmp、lamp

编写脚本lnmp.sh、lamp.sh

该演示脚本建立在/root/sh目录下

1
2
3
4
cd /root/sh
echo "echo LAMP is installed!!" > ./lamp.sh
echo "echo LNMP is installed!!" > ./lnmp.sh
chmod +x lamp.sh lnmp.sh #添加可执行权限

执行演示

1
2
3
4
5
6
[root@localhost sh]# echo "echo LAMP is installedsu commen" > ./lamp.sh
[root@localhost sh]# echo "echo LNMP is installedsu commen" > ./lnmp.sh
[root@localhost sh]# ls
lamp.sh lnmp.sh

[root@localhost ~]# chmod +x lamp.sh lnmp.sh

编写条件控制脚本

在root目录下,编写lnmp_lamp.sh

1
cd ../    #回到root目录下

脚本编写

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
#!/bin/bash
#判断脚本目录是否存在
path=/root/sh #根据自己lnmp.sh、lamp.sh所在位置而定!
#条件判断,目录是否存在,不存在则新建目录
[ ! -d "$path" ] && mkdir $path -p
#开发正常逻辑
cat << END #cat输出给用户看见;<<END 内容写入
1.[Install lamp]
2.[Install lnmp]
3.[exit]
pls input the num you want:
END
read num #用户输入
expr $num + 1 &> /dev/null #用于判断用户是否输入数字,如果是数字那么语句正常执行,$?返回为0 因为我们不需要输出的结果,所以将结果放到黑洞文件/dev/null中
#对用户输入进行判断
#非数字,提示信息
[ "$?" -ne 0 ] && {
echo "The num you input must be {1|2|3}"
exit 1
}
#输入1
[ "$num" -eq "1" ] && {
echo "Start installing lamp···pls wait···"
sleep 2; #等待两秒
#执行lamp.sh安装脚本
#执行脚本可能会出现没有执行权限的问题,我们首先要进行判断
[ -x "$path/lamp.sh" ] || {
echo "The file does not exist or can't be exec." #如果没有权限,则提示文件不存在或者无执行权限
}
$path/lamp.sh
exit $?
}
#输入2,同上
[ "$num" -eq "2" ] && {
echo "Start installing lnmp···pls wait···"
sleep 2; #等待两秒
#执行lamp.sh安装脚本
#执行脚本可能会出现没有执行权限的问题,我们首先要进行判断
[ -x "$path/lnmp.sh" ] || {
echo "The file does not exist or can't be exec." #如果没有权限,则提示文件不存在或者无执行权限
}
$path/lnmp.sh
exit $?
}
#输入3
[ "$num" -eq "3" ] && {
echo "exit successfully."
exit 3
}
#限制用户只能输入1、2、3
#使用[[]]支持的正则表达式
#[[ "$num" =~ [1-3]] ]
[[ ! "$num" =~ [1-3] ]] && {
echo "Usage:the num you input must be {1|2|3}."
exit 4
}

执行演示

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
[root@localhost ~]# bash lnmp_lamp.sh
1.[Install lamp]
2.[Install lnmp]
3.[exit]
pls input the num you want:
1
Start installing lamp···pls wait···
LAMP is installed
[root@localhost ~]# bash lnmp_lamp.sh
1.[Install lamp]
2.[Install lnmp]
3.[exit]
pls input the num you want:
2
Start installing lnmp···pls wait···
LNMP is installed
[root@localhost ~]# bash lnmp_lamp.sh
1.[Install lamp]
2.[Install lnmp]
3.[exit]
pls input the num you want:
3
exit successfully.
[root@localhost ~]# bash lnmp_lamp.sh
1.[Install lamp]
2.[Install lnmp]
3.[exit]
pls input the num you want:
dadda
Usage:The num you input must be {1|2|3}

if语句开发

单分支if语句

语法

1
2
3
4
5
6
7
8
if <条件表达式>
then
代码
fi
######简写#########
if <条件表达式>;then
代码
fi

条件表达式可以为

[ ]、test语句、[[ ]]、(( ))

双分支if语句

语法

1
2
3
4
5
6
7
8
9
if <条件表达式>
then
if <条件表达式>
then
<命令>
<>
...
fi
fi

if-else语句

语法

1
2
3
4
5
6
if <条件表达式>
then
<命令>
else
<命令>
fi

多分支if语句

语法

1
2
3
4
5
6
7
8
9
10
11
12
if <条件表达式>
then
<命令>
elif <条件表达式>
then
<命令>
elif <条件表达式>
then
<命令>
else
<命令>
fi

注意嵌套一般不超过3层

if实战开发

开发mysql监控脚本

固定每3分钟检查一次内存剩余,可用内存小于100MB的时候报警

使用crontab每三分钟检查一次

获取内存信息

1
2
3
4
5
6
7
free -m
#total 系统总可⽤物理内存⼤⼩
#used 已使⽤的物理内存⼤⼩
#free 剩余可用物理内存大小
#shared 被共享使⽤的物理内存⼤⼩
#buff/cache 被 buffer 和 cache 使⽤的物理内存⼤⼩
#available 还可以被 应⽤程序 使⽤的物理内存⼤⼩

通过编程语言连接mysql

php

python