运维shell全部语法进阶
一、if语句的使用
1)语法规则
1
2
3
4
5
6
7
8
9
|
if [条件] then 指令 fi 或 if [条件];then 指令 fi 提示:分号相当于命令换行,上面两种语法等同< br >特殊写法;if[ -f"$file1" ];then echo 1;fi 相当于[ -f"$file1" ] && echo 1 |
2)多分支结构语法
1
2
3
4
5
6
7
8
9
10
|
多分支结构;语法 if 条件 then 指令集 elif 条件 #多个 then 指令集 else 指令集 fi |
3)比较大小的案例
案例一,交互式的
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
#!/bin/sh read -p "pls input two num:" a b if [ $a -lt $b ];then echo "yes,$a less than $b" exit fi if [ $a -eq $b ];then echo "yes,$a eaual than $b" exit fi if [ $a -gt $b ];then echo "yes,$a greater than $b" exit fi |
案例二,命令行输入比较大小
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
|
[root@tomcat day1]# cat ifif.sh #!/bin/sh a=$1 b=$2 [ $# -ne 2 ] && { echo "USAGE:$0 NUM1 NUM2" exit 1 } expr $a + 0 &>/dev/null RETVAL1=$? expr $b + 0 &>/dev/null RETVAL2=$? test $RETVAL1 -eq 0 -a $RETVAL2 -eq 0 ||{ echo "Pla input two intnum again" exit 2 } if [ $a -lt $b ] then echo "$a < $b" elif [ $a -eq $b ] then echo "$a = $b" else echo "$a > $b" fi exit 0 |
案例三,比较大小经典版
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
[root@oldboy66 day2]# cat if_else.sh #!/bin/sh if [ $1 -eq $2 ] then echo "$1=$2" exit elif [ $1 -gt $2 ] then echo "$1>$2" exit else echo "$1<$2" exit fi |
4)判定在特定目录下创建文件的案例
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
[root@oldboy66 day2]# cat if4.sh #!/bin/sh path=/server/scripts file=if3.sh if [ ! -d $path ];then mkdir -p $path echo "$path is not exist,already created it." fi if [ ! -f $path/$file ];then touch $path/$file echo "$path/$file is not exist,already created it." exit fi echo "ls -l $path/$file" ls -l $path/$file |
5)查看内存,测试邮件报警
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
|
1)安装sendmail邮件工具 yum install sendmail -y /etc/init.d/sendmail start 2)获取内存大小 [root@oldboy66 day2]# free -m total used free shared buffers cached Mem: 980 906 73 0 135 489 -/+ buffers/cache: 282 698 Swap: 511 0 511 [root@oldboy66 day2]# free -m|grep buffers/ -/+ buffers/cache: 281 698 [root@oldboy66 day2]# free -m|grep buffers/|awk '{print $NF}' 698 3)写入脚本 [root@oldboy66 day3]# cat check_mem.sh #!/bin/sh used_men=`free -m|awk 'NR==3 {print $NF}'` if [ $used_men -lt 800 ];then echo "men is not enough,$used_men" echo "men is not enough.$used_men."|mail -s "men warning $(date +%F)" 1111111111@qq.com fi 4)qq邮箱设置 打开qq邮箱===》“设置” ====》“反垃圾”=====》 “设置邮件地址白名单”=====》添加“root@tomcat.localdomain” 5)执行脚本,收到邮件 6)写入定时任务 [root@oldboy66 ~]# crontab -e ###发邮件mail,mutt。Sendmail服务要开启,定时任务报警 */3 * * * * /bin/sh /server/scripts/day3/check_mem.sh &>/dev/null |
二、检测mysql服务是否启动,如果没启动,就去启动
1)检测思路
1
2
3
4
5
6
7
8
9
10
|
netstat -lntup|grep 3306 看端口 ps -ef|grep mysql 看进程 mysql -u root -p123456 -S /data/3307/mysql.sock -e "select version();" (多实例)登录进去看版本取返回值 +-----------+ | version() | +-----------+ | 5.5.32 | +-----------+ mysql -u root -poldboy -S /data/3307/mysql.sock -e "select version();" &>/dev/null echo $? |
2)检测启动脚本
方法一;根据端口
1
2
3
4
5
6
7
8
9
10
|
mysql单实例检测端口 [root@tomcat ]# cat port.sh #!/bin/sh port=`netstat -lntup|grep 3306|wc -l` if [ $port -ne 1 ] then /etc/init.d/mysqld start else echo "MySQL is running" fi |
方法二;根据进程
1
2
3
4
5
6
7
8
9
10
11
|
mysql检测进程 [root@tomcat ]# cat process.sh #!/bin/sh process=`ps -ef|grep mysql|grep -v grep|wc -l` if [ $process -ne 2 ] then /etc/init.d/mysqld start else echo "MySQL is running" fi ### sh -x process.sh #注意事项 调试。使用进程脚本不要用到mysql的名字 |
三、检查web服务是否启动
1)简单的检查web是否启动
1
2
3
4
5
6
7
8
9
|
[root@linux day3]# cat check_web.sh #!/bin/sh http_code=`curl -I -s -w "%{http_code}" -o /dev/null 192.168.1.50:50080` if [ $http_code -ne 200 ] then echo "web is error" else echo "web is ok" fi |
2)利用系统函数,实现脚本启动的特殊颜色效果,开发web服务的启动脚本
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
[root@linux day4]# cat start_nginx.sh #!/bin/sh . /etc/init.d/functions if [ $# -ne 1 ] then echo "USAGE $0 {start|stop|restart}" exit 1 fi if [ "$1" == "start" ] then action "start nginx" /bin/true elif [ "$1" == "stop" ] then action "stop nginx" /bin/true elif [ "$1" == "restart" ] then action "restart nginx" /bin/true else echo "USAGE $0 {start|stop|restart}" exit 1 fi |
3)增加函数功能,实现上面的例子
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
|
[root@linux day4]# cat start_nginx02.sh #!/bin/sh . /etc/init.d/functions start_nginx=/application/nginx/sbin/nginx USAGE() { echo "USAGE $0 {start|stop|restart}" exit 1 } if [ $# -ne 1 ] then USAGE fi if [ "$1" == "start" ] then $start_nginx action "start nginx" /bin/true elif [ "$1" == "stop" ] then killall nginx action "stop nginx" /bin/true elif [ "$1" == "restart" ] then pkill nginx sleep 2 $start_nginx action "restart nginx" /bin/true else USAGE exit 1 fi |
四、shell函数
1)函数语法
1
2
3
4
5
6
7
8
9
10
11
12
|
shell函数语法 函数名() { 指令 return n } 或 function 函数名() { 指令 return n } |
2)函数说明
1
2
3
4
5
6
7
8
|
【函数带参数的说明】 1:函数体中位置参数($1、$2、$3、$4、$5、$#、$*、$?以及$@)都可以是函数的参数 2:父脚本的参数则临时地被函数参数所掩盖或隐藏 3:$0比较特殊,它仍然是父脚本的名称 4:当函数完成时,原来的命令行参数会恢复 5:在shell函数里面,return命令的功能的工作方式与exit相同,用于跳出函数 6:在shell函数体里使用exit会终止整个shell脚本 7:return语句会返回一个退出值给调用的程序 |
3)函数调用例子
1
2
3
4
5
6
7
8
|
[root@linux day4]# cat fun01.sh #!/bin/sh oldboy01(){ echo "I am caojin linux" } oldboy01 [root@linux day4]# sh fun01.sh I am caojin linux |
4)函数传参,判断web服务是否正常
1
2
3
4
5
6
7
8
9
10
11
|
[root@linux day4]# cat check_web_by_fun.sh #!/bin/sh function Check_Url() { curl -I -s $1 |head -1 && return 0||return 1 } Check_Url $1 [root@linux day4]# sh check_web_by_fun.sh 192.168.1.50:50080 HTTP/1.1 200 OK [root@linux day4]# sh check_web_by_fun.sh baidu.com HTTP/1.1 200 OK |
五、开发mysql·的启动脚本
1)简单版
2)优化版,去掉mysql的启动输出
3)添加到开机启动
1
2
3
4
5
6
7
8
|
1)测试OK 2)cp start_db.sh /etc/init.d/mysqld 3)chmod +x /etc/init.d/mysqld 4)chkconfig --list mysqld 5)chkconfig --add mysqld 6)chkconfig mysqld on 7)chkconfig --list mysqld 8)ll /etc/rc.d/rc3.d/|grep mysqld# chkconfig: 2345 21 60 #2345 启动级别, #21 开机启动顺序, # 60 关机顺序 |
六、输出颜色方法
1)echo 输出字符串显示不同颜色范例
1
2
3
4
5
6
7
8
|
echo -e "\033[30m 黑色字caojin tarinning \033[0m" echo -e "\033[31m 红色字caojin tarinning \033[0m" echo -e "\033[32m 绿色字caojin tarinning \033[0m" echo -e "\033[33m 黄色字caojin tarinning \033[0m" echo -e "\033[34m 蓝色字caojin tarinning \033[0m" echo -e "\033[35m 紫字caojin tarinning \033[0m" echo -e "\033[36m 天蓝字caojin tarinning \033[0m" echo -e "\033[37m 白色字caojin tarinning \033[0m" |
2)字背景颜色范围:40------47
1
2
3
4
5
6
7
8
|
echo -e "40;37m 黑底白字 whlcome to China\033[0m" echo -e "41;37m 黑底白字 whlcome to China\033[0m" echo -e "42;37m 黑底白字 whlcome to China\033[0m" echo -e "43;37m 黑底白字 whlcome to China\033[0m" echo -e "44;37m 黑底白字 whlcome to China\033[0m" echo -e "45;37m 黑底白字 whlcome to China\033[0m" echo -e "46;37m 黑底白字 whlcome to China\033[0m" echo -e "47;30m 黑底白字 whlcome to China\033[0m" |
3)简单颜色脚本
七、case结构条件句
1)基本语法
1
2
3
4
5
6
7
|
case "字符串变量" in 值1)指令1... ;; 值2)指令2... ;; *)指令... esac |
2)case创建水果菜单,增加特殊颜色
3)利用传参的形式给对象增加颜色
4)案例开发类似于rsync的启动脚本
注意:此脚本并不完善,可以加载函数,添加颜色,让其开机自启动(chkconfig)
八、while循环,以及until循环
1)while语法
1
2
3
4
|
while 条件句 do 指令... done |
2)until语法
1
2
3
4
|
until 条件 do 指令.... done |
3)while循环,守护进程举例
提示:while true表示永远为真,因此会一直运行,像死循环一样,但是我们称呼为守护进程
1
2
3
4
5
6
7
|
[root@linux day5]# cat while.sh #!/bin/sh while true do uptime sleep 2 done |
脚本在后台执行
1
2
3
4
5
6
7
|
脚本在后台执行知识扩展: 功能 用途 sh while.sh & 把脚本while.sh放到后台执行 ctrl+c 停止执行当前脚本或任务 ctrl+z 暂停执行当前脚本或任务 bg 把当前脚本或任务放到后台执行 background fg 当前脚本或任务拿到前台执行,如果 |
如果执行的脚本忘记在后台执行
1
2
3
4
5
6
7
|
[root@oldboy66 day5]# sh while.sh ^Z [1]+ Stopped sh while.sh [root@oldboy66 day5]# bg [1]+ sh while.sh & [root@oldboy66 day5]# |
4)while计算1加到100的和
方法一
1
2
3
4
5
6
7
8
9
10
11
12
|
[root@linux day5]# cat while_sum.sh #!/bin/sh i=1 sum=0 while [ $i -le 100 ] do let sum=sum+i let i=i+1 done echo $sum [root@oldboy66 day5]# sh while_sum.sh 5050 |
方法二
1
2
3
4
5
6
7
8
9
10
11
12
13
|
[root@linux day5]# sh while_sum.sh 5050 或 [root@oldboy66 day5]# cat while_sum2.sh #!/bin/sh i=1 sum=0 while ((i < 101)) do ((sum=sum+i)) ((i++)) done echo $sum |
5)计算Apache一天的日志access_2016-12-8.log中所有行的日志各元素的访问字节数的总和。给出实现程序。用while循环实现
1
2
3
4
5
6
7
8
9
10
11
12
13
|
[root@linux day5]# cat log.sh #!/bin/sh sum=0 i=0 while read line do i=$(echo $line|awk '{print $10}') if expr $i + 0 &>/dev/null then ((sum=sum+i)) fi done <access_2015_12_8.log echo $sum |
6)while循环做抓阄小游戏
要求:
[ 1 ]每个人都输入名字,然后随机产生不同的数字(1--99)
[ 2 ]第一个输入名字后,屏幕输出信息,并将名字和数字记录到文件里,程序不能退出,继续等待别的学生输入。
[ 3 ]输出的名字与对应的数字的最大则是被抓到的人
七、rsync 数据同步
范例:每10秒钟做一次rsync binlog推送,通过守护进程方式,写完脚本后台执行。当配好rsync服务时,可以直接用的脚本
1
2
3
4
5
6
7
|
[root@linux day5]# cat rsync_binlog.sh #!/bin/sh while true do rsync -az /data/3306/mysql-bin* rsync_backup@192.168.1.49::backup --password-file=/etc/rsync.password & sleep 10 done |
八、for循环
1)for循环简单例子
1
2
3
4
5
6
|
[root@linux day6]# cat for.sh #!/bin/sh for n in 5 4 3 2 1 do echo $n done |
2)开发脚本实现仅设置sshd rsyslog crond network sysstat开机自启动
1
2
3
4
5
6
7
8
9
10
|
[root@linux day6]# cat auto_start.sh #!/bin/sh for name in `chkconfig --list|grep 3:on|awk '{print $1}'` do chkconfig $name off done for name in rsyslog network crond sshd systtat do chkconfig $name on done |
3)for循环在/oldboy目录下批量创建10个文件,名称依次为:oldboy-1.html.....
1
2
3
4
5
6
7
|
[root@linux day6]# cat for_mkdir.sh #!/bin/sh [ ! -d /oldboy ] && mkdir -p /oldboy for i in `seq 10` do touch /oldboy/oldboy-${i}.html done |
4)用for循环实现将以上文件名中的oldboy全部改为Linux,并且扩展名改为大写。要求for循环的循环体不能出现oldboy字符串
批量改名案例:http://oldboy.blog.51cto.com/2561410/711342
5)批量创建10个用户并设置密码
九、随机数
1)获取随机数的7个方法
1
2
3
4
5
6
7
|
[root@linux day6]# echo $RANDOM [root@linux day6]# openssl rand -base64 8 [root@linux day6]# date +%s%N [root@linux day6]# head /dev/urandom|cksum [root@linux day6]# cat /proc/sys/kernel/random/uuid [root@linux day6]# yum install expect -y [root@linux day6]# mkpasswd -l 8 |
2)生产随机数
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
[root@oldboy66 day6]# echo $RANDOM 17123 [root@oldboy66 day6]# echo $RANDOM 23696 [root@oldboy66 day6]# echo $((RANDOM+10000000)) 10028068 [root@oldboy66 day6]# echo $((RANDOM+10000000)) 10016282 [root@oldboy66 day6]# echo $RANDOM|md5sum|cut -c 1-8 100764b3 [root@oldboy66 day6]# echo $RANDOM|md5sum|cut -c 1-8 3447b18d 下面是高级随机 [root@oldboy66 day6]# echo "`date`$RANDOM"|md5sum|cut -c 1-8 c78d73a8 [root@oldboy66 day6]# echo "`date`$RANDOM"|md5sum|cut -c 1-8 82d4b31e |
运维shell全部语法进阶的更多相关文章
- 运维工程师打怪升级进阶之路 V2.0
在此之前,发布过两个版本: 运维工程师打怪升级之路 V1.0 版本发布 运维工程师打怪升级必经之路 V1.0.1 很多读者伙伴们反应总结的很系统.很全面,无论是0基础初学者,还是有基础的入门者,或者是 ...
- 自动化运维Shell入门
运维shell 作用 项目部署 项目监控 什么是shell shell是一个程序,/bin/bash/,是一个命令解释器所有linux命令都由他来执行,打开终端就进入了 shell的交互式命令 运行方 ...
- 运维shell脚本函数语法
在fun.sh 文件里,使用函数来封装脚本内容 usege() { echo "hello world" echo "脚本怎么使用函数......"}usege ...
- 运维脚本while语法
循环的意思就是让程序重复地执行某些语句; whiler循环就是循环结构的一种,当事先不知道循环该执行多少次,就要用到while循环; while循环语句的运行过程 使用while循环语句时,可以根据特 ...
- 【Linux运维-集群技术进阶】Nginx+Keepalived+Tomcat搭建高可用/负载均衡/动静分离的Webserver集群
额.博客名字有点长.. . 前言 最终到这篇文章了,心情是有点激动的. 由于这篇文章会集中曾经博客讲到的全部Nginx功能点.包含主要的负载均衡,还有动静分离技术再加上这篇文章的重点.通过Keepal ...
- linux运维自动化shell脚本小工具
linux运维shell 脚本小工具,如要分享此文章,请注明文章出处,以下脚本仅供参考,若放置在服务器上出错,后果请自负 1.检测cpu剩余百分比 #!/bin/bash #Inspect CPU # ...
- Linux从入门到放弃(为做一个开发+运维的全能性人才而奋斗)
Linux?听说是一个操作系统,好用吗?” “我也不知道呀,和windows有什么区别?我能在Linux上玩LOL吗” “别提了,我用过Linux,就是黑乎乎一个屏幕,鼠标也不能用,不停地的敲键盘,手 ...
- (转)老男孩:Linux企业运维人员最常用150个命令汇总
近来老男孩发现新手学习Linux记不住命令,不会分类.不会筛选重点,胡子眉毛一把抓当然记不住了. 特别整理Linux运维最常用150个命令和大家分享,大家学习命令不用在盲目了,根据分类,然后逐步学习! ...
- linux运维 技能树
linux运维 技能树:: 初级运维: 基础:mysql基础,网络基础,计算机基础,linux系统vim, nginx ,grep ,awk,sed ,zaabix和常用开源软件,java tomca ...
随机推荐
- 记录Sql2012附加Sql2008的数据库出错的解决方案
只需要对要附加的数据文件[右键]->[属性]->[安全]->(选择“Authenticated Users”用户)[编辑]->让“Authenticated Users”用户具 ...
- Vue 组件异步加载(懒加载)
一.vue的编译模式 (1)路由配置信息 //eg1: const MSite = resolve => require.ensure([], () =>resolve(require([ ...
- 通过 txt 文件批量导入需要批量处理的数据的标识字段
前言 在一些工作中,可能需要对数据库中的一些数据(批量)进行处理(修改或者查询),而数据的来源是你的同事,换句话说就是这批数据不可能通过某些查询条件查出来, 而这批数据又比较多,比如几百.几千甚至几万 ...
- js 取整 取余
1.取整//保留整数部分parseInt(3/2) // 1 2.向上取整// 向上取整,有小数就整数部分加1Math.ceil(3/2) // 2 3.四舍五入// 四舍五入Math.round(3 ...
- [转] jquery作者John Resig编写的微模板引擎:JavaScript Micro-Templating
I've had a little utility that I've been kicking around for some time now that I've found to be quit ...
- Python3+slowloris安装使用教程
一.说明 今天提到slowloris,这东西看着很眼熟,应该是以前局方打算用来刷竞赛积分的工具.我总觉得DoS没什么意思,但记不得怎么用了所以还是研究一下. 二.安装 slowloris就是一个pyt ...
- 常用adb 指令
adb指令 monkey https://www.cnblogs.com/aland-1415/p/6949964.html
- 构建web应用之——maven创建以及SpringMVC配置
构建web应用第一步需要创建以及配置maven项目管理,同时配置启动SpringMVC,这里推荐参考CSDN的一篇文章链接:https://blog.csdn.net/weixin_42222334/ ...
- jsp页面<%@ page报错问题
eclipse中的web项目jsp页面<%@报错如下图所示: 解决办法: 在项目上右键→ Build Path → Configure Build Path... Libraries → add ...
- CSS3-1
css3 1 学习前置条件:html + css2 2 概述 *历史 css3 就是层叠样式表的目前的最高版本,带来了许多新特性.如,圆角.渐变.过渡.动画.新布局(多列布局缩进盒子等) // c ...