shell中的函數、數組及告警系統需求分析

shell中的函數

  • 把一段代碼整理到了一個小單元中,並給這個小單元起一個名字,當用到這段代碼時直接調用這個小單元的名字便可。python

  • 函數就是一個子shell,就是一個代碼段,定義完函數就能夠引用它shell

  • 格式:vim

    • function 後是函數的名字,而且 function 這個單詞是能夠省略掉的
      • 花括號{} 裏面爲具體的命令
格式: function f_name() {
                      command
             }
函數必需要放在最前面
  • 示例1
    • 這個函數是用來打印參數
#!/bin/bash
input(){
     echo $1 $2 $0 $#
}
input 1 a b 9
[root@yong-01 shell2]# sh -x fun1.sh 
+ input 1 a b 9
+ echo 1 a fun1.sh 4
1 a fun1.sh 4
  • 函數,能夠直接寫在腳本內,至關於直接調用
    • 內建變量
    • $1 第一個參數
    • $2 第二個參數
    • ...
    • ~
    • $# 總共有幾個參數
    • $0 腳本名字
[root@yong-01 shell2]# sh -x fun1.sh 
+ input 1 a b 9
+ echo 1 a fun1.sh 4
1 a fun1.sh 4
[root@yong-01 shell2]# vim fun1.sh
[root@yong-01 shell2]# sh fun1.sh 1 4
1 4 fun1.sh 2
  • 示例2
    • 用於定義加法的函數,shell中定義的函數,必須放在上面
    • 在shell裏面須要優先定義函數,好比在調用這個函數的時候,函數尚未定義,就會報錯
      • 在想要調用哪個函數,就必須在調用語句以前,先定義這個函數
#!/bin/bash
sum() {
    s=$[$1+$2]
#定義變量s = $1+$2 /其中 $1爲第一個參數,$2爲第二個參數
    echo $s
}
sum 2 6
#輸出 第一個參數和第二個參數
[root@yong-01 shell2]# sh -x fun2.sh 
+ sum 2 6
+ s=8
+ echo 8
8
  • 示例3
    • 顯示IP,輸入網卡的名字,而後顯示網卡的IP
#!/bin/bash
ip() {
    ifconfig |grep -A1 "$eth: " |awk '/inet/ {print $2}'
#查看網卡,過濾出ens33及下面的一行,匹配inet行並打印出第二段
}
read -p "Please input the eth name: " eth
myip=`ip $eth`
echo "$eth address is $myip"
  • grep -A1 "ens33" 過濾顯示出關鍵詞及關鍵詞下的一行
[root@yong-01 shell2]# ifconfig |grep -A1 "ens33"
ens33: flags=4163<UP,BROADCAST,RUNNING,MULTICAST>  mtu 1500
        inet 192.168.180.134  netmask 255.255.255.0  broadcast 192.168.180.255
[root@yong-01 shell2]# ifconfig |grep -A1 "ens33"|tail -1
        inet 192.168.180.134  netmask 255.255.255.0  broadcast 192.168.180.255
[root@yong-01 shell2]# ifconfig |grep -A1 "ens33"|tail -1|awk '{print $2}'
192.168.180.134
  • 案例4  斷定是否爲本機的網卡,斷定輸入的網卡是否有IP
#!/bin/bash
#coding:utf8
ip()
{
    a=`ifconfig |grep -A1 "$eth: " |tail -1 |awk '{print $2}'`
    if [ -z "$a" ]
    then
        echo $eth
        echo "沒有這個網卡名"
        exit
    fi
    echo $a
}
read -p "請輸入你的網卡名字: " eth
myip=`ip $eth`
echo "$eth address is $myip"

shell中的數組

  • shell中的數組1
    • 定義數組 a=(1 2 3 4 5); echo ${a[@]}
    • echo ${#a[@]} 獲取數組的元素個數
    • echo ${a[2]} 讀取第三個元素,數組從0開始
    • echo ${a[*]} 等同於 ${a[@]} 顯示整個數組
    • 數組賦值
    • a[1]=100; echo ${a[@]}
    • a[5]=2; echo ${a[@]} 若是下標不存在則會自動添加一個元素
    • 數組的刪除
    • uset a; unset a[1]
  • shell中的數組2
    • 數組分片
    • a=(seq 1 5)
    • echo ${a[@]:0:3} 從第一個元素開始,截取3個
    • echo ${a[@]:1:4} 從第二個元素開始,截取4個
    • echo ${a[@]:0-3:2} 從倒數第3個元素開始,截取2個
    • 數組替換
    • echo ${a[@]/3/100}
    • a=(${a[@]/3/100})
  • 數組,就是一串字符創或者一串數字,造成的一個變量,把這個變量叫作數組
  • echo ${b[*]} 等同於 ${b[@]} 顯示整個數組
    • 理解爲 打印 $a 裏面的全部東西, @、*都表示全部內容
[root@yong-01 shell]# b=(1 2 3)    定義數組
[root@yong-01 shell]# echo ${b[@]}        表示數組
1 2 3
[root@yong-01 shell]# echo ${b[*]}         表示數組
1 2 3
  • 查看某一個元素的值
  • 特殊性:方括號裏面的數字表示它的下標,意思就是說這個元素是第幾個
    • 第0個就表示第一個,第一個就表示第二個.....(數組就是從0 開始的)
[root@yong-01 shell]# echo ${b[1]}
2
[root@yong-01 shell]# echo ${b[2]}
3
[root@yong-01 shell]# echo ${b[0]}
1
  • 獲取數組元素的個數
[root@yong-01 shell2]# echo ${#b[@]}
3
[root@yong-01 shell2]# echo ${#b[*]}
3

數組賦值

  • 元素的賦值 或更改覆蓋
[root@yong-01 shell2]# echo ${b[*]}
1 2 3
[root@yong-01 shell2]# b[3]=aa
[root@yong-01 shell2]# echo ${b[*]}
1 2 3 aa
[root@yong-01 shell2]# b[3]=100
[root@yong-01 shell2]# echo ${b[*]}
1 2 3 100
  • echo ${b[@]}
    • 若是下標不存在則會自動添加一個元素

數組的刪除

[root@yong-01 shell2]# unset b[3]
[root@yong-01 shell2]# echo ${b[*]}
1 2 3
[root@yong-01 shell2]# unset b    把數組的值清空
[root@yong-01 shell2]# echo ${b[*]}

數組的分片

[root@yong-01 shell2]# a=(`seq 1 10`)
[root@yong-01 shell2]# echo ${a[*]}
1 2 3 4 5 6 7 8 9 10
  • 截取數字4到數字7,這四個數字
3表示從3開始,4表示截取4個
[root@yong-01 shell2]# echo ${a[*]}
1 2 3 4 5 6 7 8 9 10
[root@yong-01 shell2]# echo ${a[*]:3:4}
4 5 6 7
  • 從倒數第三個開始,截取2個
    • 必須寫成 0-3
[root@yong-01 shell2]# echo ${a[*]:0-3:2}
8 9

數組的替換

  • 數組的替換和sed替換相似
  • 把數組的8替換成6
[root@yong-01 shell2]# echo ${a[*]}
1 2 3 4 5 6 7 8 9 10
[root@yong-01 shell2]# echo ${a[*]/8/6}
1 2 3 4 5 6 7 6 9 10
  • 直接賦值(須要用括號括起來)
[root@yong-01 shell2]# a=(${a[*]/8/6})
[root@yong-01 shell2]# echo ${a[*]}
1 2 3 4 5 6 7 6 9 10

告警系統需求分析

  • 需求:使用shell定製各類個性化告警工具,但須要統一化管理、規範化管理。
  • 思路:指定一個腳本包,包含主程序、子程序、配置文件、郵件引擎、輸出日誌等。
  • 主程序:做爲整個腳本的入口,是整個系統的命脈。
  • 配置文件:是一個控制中心,用它來開關各個子程序,指定各個相關聯的日誌文件。
  • 子程序:這個纔是真正的監控腳本,用來監控各個指標。
  • 郵件引擎:是由一個python程序來實現,它能夠定義發郵件的服務器、發郵件人以及發件人密碼
  • 輸出日誌:整個監控系統要有日誌輸出。
  • 要求:咱們的機器角色多種多樣,可是全部機器上都要部署一樣的監控系統,也就說全部機器無論什麼角色,整個程序框架都是一致的,不一樣的地方在於根據不一樣的角色,定製不一樣的配置文件。
  • 程序架構:

輸入圖片說明

  • bin下是主程序
  • conf下是配置文件
  • shares下是各個監控腳本
  • mail下是郵件引擎log下是日誌。
相關文章
相關標籤/搜索