一、if条件语句的知识与实践

1.if条件语句语法(单分支结构)

第一种:

if < 条件表达式 >
then
指令
fi

第二种:

if < 条件表达式 >; then
指令
fi

嵌套:

if < 条件表达式 >
then
if < 条件表达式 >
then
指令
fi
fi

2.多分支结构

if < 条件表达式 >
then
指令
else
指令
fi

if < 条件表达式 >
then
指令
elif < 条件表达式 >
then
指令
else
指令
fi

3.单分支实践

(1)把下面的测试文件中条件表达式语句改成if条件语句

[root@codis-178 ~]# [ -f /etc/hosts ] && echo 1
1
[root@codis-178 ~]# [[ -f /etc/hosts ]] && echo 1
1
[root@codis-178 ~]# test -f /etc/hosts && echo 1
1
[root@codis-178 ~]# cat 7_1.sh
#!/bin/bash
if [ -f /etc/hosts ]
then
echo 1
fi
if [[ -f /etc/hosts ]]
then
echo 1
fi
if test -f /etc/hosts
then
echo 1
fi
[root@codis-178 ~]# sh 7_1.sh
1
1
1

(2)判断系统剩余内存大小,若低于100MB。就邮件报警,并将脚本加入定时任务,每3分钟执行一次检查。

[root@codis-178 ~]# cat 7_2.sh
#!/bin/bash
FreeMem=`free -m|awk 'NR==3 {print $NF}'`
CHARS="Current memory is $FreeMem" if [ $FreeMem -lt 100 ]
then
echo $CHARS|tee /tmp/messages.txt
mail -s "`date +%F-%T`$CHARS" test@oldboy.com < /tmp/messages.txt
fi 加入crontab中
# monitor sys mem at 20170802 by xiaoda
*/3 * * * * /bin/sh /data/cron/7_2.sh &>/dev/null

(3)实现整数大小的比较

[root@codis-178 ~]# cat 7_3.sh
#!/bin/bash
read -p "pls input two num:" a b
if [ $a -lt $b ];then
echo "$a < $b"
elif [ $a -gt $b ];then
echo "$a > $b"
elif [ $a -eq $b ];then
echo "$a = $b"
else
echo "Input error"
fi [root@codis-178 ~]# sh 7_3.sh
pls input two num: 5 6
5 < 6
[root@codis-178 ~]# sh 7_3.sh
pls input two num: 8 4
8 > 4
[root@codis-178 ~]# sh 7_3.sh
pls input two num: 5 5
5 = 5

二、企业案例

1.监控Web和数据库之分析问题

2.监控方法

本地端口监控

netstat -lnt|grep 3306|awk -F "[ :]+" '{print $5}'
netstat -lntup|grep 3306 |wc -l
netstat -lntup|grep mysql|wc -l
lsof -i tcp:3306|wc -l

远程端口监控

nmap 127.0.0.1 -p 3306 |grep open |wc -l
nc -w 2 127.0.0.1 3306 &>/dev/null

服务进程或进程数监控

ps -ef|grep mysql|grep -v grep|wc -l

客户端模拟用户访问

[root@codis-178 ~]# wget --spider --timeout=10 --tries=2 www.baidu.com
Spider mode enabled. Check if remote file exists.
--2017-08-02 13:55:10-- http://www.baidu.com/
Resolving www.baidu.com... 61.135.169.125, 61.135.169.121
Connecting to www.baidu.com|61.135.169.125|:80... connected.
HTTP request sent, awaiting response... 200 OK
Length: 277 [text/html]
Remote file exists and could contain further links,
but recursion is disabled -- not retrieving.
curl -s http://www.baidu.com

3.开发监控MySQL数据库的脚本

[root@codis-178 ~]# cat 7_4.sh
#!/bin/bash
echo method1--------------
if [ `netstat -lnt|grep 3306|awk -F "[ :]+" '{print $5}'` -eq 3306 ]
then
echo "MySQL is Running."
else
echo "MySQL is Stopped."
#/etc/init.d/mysqld start
fi
[root@codis-178 ~]# sh 7_4.sh
method1--------------
MySQL is Running. [root@codis-178 ~]# cat 7_4_1.sh
#!/bin/bash
echo method2--------------
if [ `netstat -lnt|grep 3306|awk -F "[ :]+" '{print $5}'` = "3306" ]
then
echo "MySQL is Running."
else
echo "MySQL is Stopped."
#/etc/init.d/mysqld start
fi
[root@codis-178 ~]# sh 7_4_1.sh
method2--------------
MySQL is Running. [root@codis-178 ~]# cat 7_4_2.sh
#!/bin/bash
echo method3--------------
if [ `netstat -lntup|grep mysqld|wc -l` -gt 0 ]
then
echo "MySQL is Running."
else
echo "MySQL is Stopped."
#/etc/init.d/mysqld start
fi
[root@codis-178 ~]# sh 7_4_2.sh
method3--------------
MySQL is Running. [root@codis-178 ~]# cat 7_4_3.sh
#!/bin/bash
echo method4--------------
if [ `lsof -i tcp:3306|wc -l` -gt 0 ]
then
echo "MySQL is Running."
else
echo "MySQL is Stopped."
#/etc/init.d/mysqld start
fi
[root@codis-178 ~]# sh 7_4_3.sh
method4--------------
MySQL is Running.

4.监控Nginx Web服务异常

[root@codis-178 ~]# netstat -lnt|grep -w 8081|awk -F "[ :]+" '{print $5}'
8081
[root@codis-178 ~]# netstat -lntup|grep -w 8081|wc -l
1
[root@codis-178 ~]# lsof -i tcp:8081|wc -l
4
[root@codis-178 ~]# ps -ef |grep nginx|grep -v grep|wc -l
3
[root@codis-178 ~]# ps -C nginx --no-header
10869 ? 00:00:00 nginx
10870 ? 00:10:55 nginx
10871 ? 00:07:43 nginx
[root@codis-178 ~]# ps -C nginx --no-header|wc -l
3

5.开发监控Nginx Web服务的脚本

[root@codis-178 ~]# cat 7_5.sh
#!/bin/bash
echo http method1---------------
if [ `netstat -lnt|grep 8081|awk -F "[ :]+" '{print $5}'` -eq 8081 ]
then
echo "Nginx is Running."
else
echo "Nginx is Stoped."
fi
[root@codis-178 ~]# sh 7_5.sh
http method1---------------
Nginx is Running. [root@codis-178 ~]# cat 7_5_1.sh
#!/bin/bash
echo http method1---------------
if [ `netstat -lnt|grep 8081|awk -F "[ :]+" '{print $5}'` = "8081" ]
then
echo "Nginx is Running."
else
echo "Nginx is Stoped."
fi
[root@codis-178 ~]# sh 7_5_1.sh
http method1---------------
Nginx is Running. [root@codis-178 ~]# cat 7_5_2.sh
#!/bin/bash
echo http method2---------------
if [ `netstat -lntup|grep nginx|wc -l` -gt 0 ]
then
echo "Nginx is Running."
else
echo "Nginx is Stoped."
fi
[root@codis-178 ~]# sh 7_5_2.sh
http method2---------------
Nginx is Running.

三、经典案例

1.比较两个整数

[root@codis-178 ~]# cat 7_6.sh
#!/bin/bash
read -p "pls input two num:" a b
expr $a + 10 &>/dev/null
RETVAL1=$?
expr $b + 10 &>/dev/null
RETVAL2=$?
if [ -z "$a" ] || [ -z "$b" ]
then
echo "Pls input two num agin."
exit 1
elif test $RETVAL1 -ne 0 -o $RETVAL2 -ne 0
then
echo "Pls input two "num" again."
exit 2
elif [ $a -lt $b ]
then
echo "$a < $b"
elif [ $a -eq $b ]
then
echo "$a = $b"
else
echo "$a > $b"
fi
[root@codis-178 ~]# sh 7_6.sh
pls input two num: 6 9
6 < 9
[root@codis-178 ~]# sh 7_6.sh
pls input two num: 8 2
8 > 2
[root@codis-178 ~]# sh 7_6.sh
pls input two num: 7 7
7 = 7

2.判断字符串是否为数字

思路1:删除字符串中的所有数字,看长度是否为0
[root@codis-178 ~]# [ -n "`echo oldboy123|sed 's/[0-9]//g'`" ] && echo char ||echo int
char
[root@codis-178 ~]# [ -n "`echo 123|sed 's/[0-9]//g'`" ] && echo char ||echo int
int
[root@codis-178 ~]# [ -z "`echo 123|sed 's/[0-9]//g'`" ] && echo char ||echo int
char
[root@codis-178 ~]# [ -z "`echo 123|sed 's/[0-9]//g'`" ] && echo int ||echo char
int
[root@codis-178 ~]# [ -z "`echo oldboy123|sed 's/[0-9]//g'`" ] && echo int ||echo char
char 思路2:如果num的长度不为0,并且把num中的非数字部分删除,然后再看结果是不是等于num本身,如果两者都成立,则num是数字
[root@codis-178 ~]# num=521
[root@codis-178 ~]# [ -n "$num" -a "$num" = "${num//[^0-9]/}" ] && echo "it is num"
it is num
[root@codis-178 ~]# num=oldboy521
[root@codis-178 ~]# [ -n "$num" -a "$num" = "${num//[^0-9]/}" ] && echo "it is num"
[root@codis-178 ~]# 思路3:通过expr计算判断
[root@codis-178 ~]# expr pldboy + 1 &>/dev/null
[root@codis-178 ~]# echo $?
2
[root@codis-178 ~]# expr 123 + 1 &>/dev/null
[root@codis-178 ~]# echo $?
0
[root@codis-178 ~]# expr 0 + 0 &>/dev/null
[root@codis-178 ~]# echo $?
1 思路4:利用“=~”符号判断
[root@codis-178 ~]# [[ oldboy123 =~ ^[0-9]+$ ]] && echo int ||echo char
char
[root@codis-178 ~]# [[ 123 =~ ^[0-9]+$ ]] && echo int ||echo char
int

3.判断字符串长度是否为0

思路1:使用-z和-n的语法
[root@codis-178 ~]# [ -z "oldboy" ] && echo 1 ||echo 0
0
[root@codis-178 ~]# [ -n "oldboy" ] && echo 1 ||echo 0
1 思路2:使用变量子串判断
[root@codis-178 ~]# [ ${#char} -eq 0 ] && echo 1 ||echo 0
0 思路3:使用expr length函数判断
[root@codis-178 ~]# [ `expr length "oldboy"` -eq 0 ] && echo 1 || echo 0
0 思路4:使用wc的-L参数统计
[root@codis-178 ~]# [ `echo oldboy|wc -L` -eq 0 ] && echo 1 ||echo 0
0 思路5:使用awk length函数判断
[root@codis-178 ~]# [ `echo oldboy|awk '{print length}'` -eq 0 ] && echo 1 || echo 0
0

4.生产场景案例

(1)监控memcached服务

[root@codis-178 ~]# cat memcached.sh
#!/bin/bash
printf "del key\r\n"|nc 127.0.0.1 11211 &>/dev/null
printf "set key 0 0 10 \r\noldboy1234\r\n"|nc 127.0.0.1 11211 &>/dev/null
McValues=`printf "get key\r\n" |nc 127.0.0.1 11211|grep oldboy1234|wc -l`
if [ $McVaules -eq 1 ]
then
echo "memcached status is ok."
else
echo "memcached status is bad."
fi

思考题:如何监控MC服务、命中率、响应时间三个指标

(2)开发rsync启动脚本

[root@codis-178 ~]# cat rsyncd
#!/bin/bash
# chkconfig: 2345 20 80
# description: Rsyncd Startup script by xiaoda
if [ $# -ne 1 ]
then
echo $"usage:$0 {start|stop|restart}"
exit 1
fi
if [ "$1" = "start" ]
then
rsync --daemon
sleep 2
if [ `netstat -lntip|grep rsync|wc -l` -ge 1 ]
then
echo "rsyncd is started."
exit 0
fi
elif [ "$1" = "stop" ]
then
killall rsync &>/dev/null
sleep 2
if [ `netstat -lntip|grep rsync|wc -l` -eq 0 ]
then
echo "rsyncd is stoped."
exit 0
fi
elif [ "$1" = "restart" ]
then
killall rsync
sleep 1
killpro=`netstat -lntup|grep rsync |wc -l`
rsync --daemon
sleep 1
startpro=`netstat -lntup|grep rsync |wc -l`
if [ $killpro -eq 0 -a $startpro -ge 1 ]
then
echo "rsync is restarted."
exit 0
fi
else
echo $"usage:$0 {start|stop|restart}"
exit 1
fi

运行结果:

[root@codis-178 ~]# /etc/init.d/rsyncd stop
rsyncd is stoped.
[root@codis-178 ~]# netstat -lntup |grep 873
[root@codis-178 ~]# /etc/init.d/rsyncd start
[root@codis-178 ~]# netstat -lntup |grep 873
tcp 0 0 192.168.1.178:873 0.0.0.0:* LISTEN 13878/rsync

Shell编程之IF条件的更多相关文章

  1. Shell编程之case条件

    一.case条件语句 1.语法 case "变量" in 值 1) 指令 1... ;; 值 2) 指令 2... ;; *) 指令 3... esac case条件语句的执行流程 ...

  2. shell编程之awk命令详解

    shell编程之awk命令详解 a:focus { outline: thin dotted #333; outline: 5px auto -webkit-focus-ring-color; out ...

  3. shell编程之case分支语句

    shell编程之case分支语句 case分支语句和if的多分支语句很相似. if多分支语句一般用在有(区间范围)的地方 :例如:0-100之间. if需要判断多个不同的条件. case的分支语句用在 ...

  4. 03 shell编程之case语句与函数

    本文所有内容均来自当年博主当年学习笔记,若有不足欢迎指正 Shell编程之case语句与函数 学习目标: 掌握case语句编程 掌握shell函数的使用 目录结构: Case语句 Case语句的作用 ...

  5. shell编程之if语句

    shell编程之if判断 目录 shell编程之if判断 1.整数比较 2.字符串比较 3.举例 1.数字比较 2.字符串比较 4.Other 1.整数比较 -eq 等于,如:if [ "$ ...

  6. shell 编程之 for while until 循环

    shell 的for循环 的格式如下: for 变量  in 列表 do ... done 列表是一组值的序列 每个值通过空格隔开 每循环一次,列表中的下一个值赋给变量 in 列表是可选的,如果不用他 ...

  7. shell 编程之 if...else case...esac

    shell的条件判断语句有三种 if...fi  语句 if...else...fi  语句 if...elif...fi  语句 例子: a=10; b=20; if [ $a -gt %b ] t ...

  8. Shell编程之Shift的用法

    位置参数可以用shift命令左移.比如shift 3表示原来的$4现在变成$1,原来的$5现在变成$2等等,原来的$1.$2.$3丢弃,$0不移动.不带参数的shift命令相当于shift 1. 非常 ...

  9. shell编程之echo printf 命令

    shell中 echo 和printf 都能用作输出,printf可以算是echo的增强版 显示转义字符 echo \""abcdef\"" >>& ...

随机推荐

  1. Spring MVC简单URL处理程序映射

    以下示例显示如何使用Spring Web MVC框架来实现一个简单URL处理程序映射. SimpleUrlHandlerMapping类分别显式地将URL映射到相应的控制器上. 所下所示配置 - &l ...

  2. python 爬虫2 Urllib库的高级用法

    1.设置Headers 有些网站不会同意程序直接用上面的方式进行访问,如果识别有问题,那么站点根本不会响应,所以为了完全模拟浏览器的工作,我们需要设置一些Headers 的属性. import url ...

  3. Mysql闪回技术之 binlog2sql

    1.下载 https://github.com/danfengcao/binlog2sql http://rpmfind.net Search: python-pip pip 是一个Python包管理 ...

  4. Android中AsyncTask的使用 (包含文件的下载与存储)

    今天看到大神写的相关详解Android中AsyncTask的使用,真的很是佩服,下面我将学习到的AsynTask知识运用到项目中,其中也涉及一些文件的下载与存储到本地 啥都不说了,直接上代码,我将对其 ...

  5. 16进制 ,Color,Colour转换

    import java.awt.Color; import jxl.format.Colour; public class ColorUtil { public static Colour getNe ...

  6. 关于spring MVC中加载多个validator的方法。

    首先讲下什么叫做validator: validator是验证器,可以验证后台接受的数据,对数据做校验. SpringMVC服务器验证有两种方式,一种是基于Validator接口,一种是使用Annot ...

  7. Splay_Tree 模板(区间修改,旋转操作)

    1.旋转操作 #define MAXN 100100 bool Add[MAXN];//延迟标记 struct Splay_Tree { int cnt, rt;//cnt为节点数,rt == roo ...

  8. &#x编码转换成汉字

    import java.io.UnsupportedEncodingException; public class UnicodeDecoder { public static String esca ...

  9. 查看java进程的所有信息

    查看java 进程下的所有信息 ll /proc/pid/fd ru:ll /proc/24047/fd

  10. Xamarin.Forms学习之XAML命名空间

    大家好,我又悄咪咪的来了,在上一篇的Xamarin文章中简单介绍了Xamarin的安装过程,妈蛋没想到很多小朋友很感激我,让他们成功的安装了Xamarin,然后......成功的显示了经典的两个单词( ...