shell指令碼中的函數,shell中的數組,shell項目-警示系統

來源:互聯網
上載者:User

標籤:flag   警示系統需求分析   mtu   .sh   bin   grep   lag   定義   監控系統   

shell指令碼中的函數
  • 函數就是把一段代碼整理到了一個小單元中,並給這個小單元起一個名字,當用到這段代碼時直接調用這個小單元的名字即可。
  • 格式:
    function f_name() {
    command

}
函數必須要放在最前面,function可以省略直接寫函數名

  • 示列1,列印shell的參數
    [[email protected] shell]# cat fun1.sh #!/bin/bashfunction inp(){echo "the first par is $1"echo "the sedcond par is $2"echo "the third par is $3"echo "the scritp name is $0"echo "the number of par is $#"}inp b a 2 3 sjkdj[[email protected] shell]# sh fun1.sh the first par is bthe sedcond par is athe third par is 2the scritp name is fun1.shthe number of par is 5第一個參數是b,第二個是a,第三個是2,指令碼名是fun1.sh,參數個數是5.
  • 也可以定義函數的參數
    [[email protected] shell]# cat fun1.sh #!/bin/bashfunction inp(){echo "the first par is $1"echo "the sedcond par is $2"echo "the third par is $3"echo "the scritp name is $0"echo "the number of par is $#"}inp $1 $2 $3[[email protected] shell]# sh fun1.sh 1 2 3the first par is 1the sedcond par is 2the third par is 3the scritp name is fun1.shthe number of par is 3
  • 示列2,第一個參數和第二個參數相加並列印

    [[email protected] shell]# cat fun2.sh #!/bin/bashsum(){s=$[$1+$2]echo $s}sum 1 10 [[email protected] shell]# sh fun2.sh 11
  • 示列3,輸入網卡名,得到ip
函數的核心命令推演[[email protected] shell]# ifconfig |grep -A1 "ens33"ens33: flags=4163<UP,BROADCAST,RUNNING,MULTICAST>  mtu 1500        inet 192.168.21.128  netmask 255.255.255.0  broadcast 192.168.21.255ens33:0: flags=4163<UP,BROADCAST,RUNNING,MULTICAST>  mtu 1500        inet 192.168.21.133  netmask 255.255.255.0  broadcast 192.168.21.255[[email protected]ux01 shell]# ifconfig |grep -A1 "ens33: "ens33: flags=4163<UP,BROADCAST,RUNNING,MULTICAST>  mtu 1500        inet 192.168.21.128  netmask 255.255.255.0  broadcast 192.168.21.255[[email protected] shell]# ifconfig |grep -A1 "ens33: "|awk ‘/inet/‘        inet 192.168.21.128  netmask 255.255.255.0  broadcast 192.168.21.255[[email protected] shell]# ifconfig |grep -A1 "ens33: "|awk ‘/inet/‘|awk -F ‘ ‘ ‘{print$2}‘192.168.21.128[[email protected] shell]# cat fun3.sh #!/bin/baship(){ ifconfig |grep -A1 "$1: "|awk ‘/inet/‘|awk -F ‘ ‘ ‘{print$2}‘ }while :do  read -p "Please input the eth name:" eth  n=`ifconfig|grep "$eth"`  if [ -z "$eth" ]    then      echo "你必須輸入一個網卡名"    elif [ -z "$n" ]      then        echo "請你輸入正確的網卡名"        continue    else      break   fidoneip_=`ip $eth`if [ -z "$ip_" ]  then    echo "$eth:這個網卡沒有配置ip"  else    echo "$eth:$ip_" fi[[email protected] shell]# sh fun3.sh Please input the eth name:你必須輸入一個網卡名Please input the eth name:dada請你輸入正確的網卡名Please input the eth name:ens33ens33:192.168.21.128[[email protected] shell]# sh fun3.sh Please input the eth name:ens37ens37:這個網卡沒有配置ip
shell中的數組
  • 定義數組,a=(1 2 3 4);echo ${a[@]}.這裡的數字也能寫為字串
    [[email protected] shell]# a=(as b cd)[[email protected] shell]# echo ${a[@]}as b cd[[email protected] shell]# echo ${a[*]}as b cd
  • echo ${a[2]} 讀取第三個元素,數組從0開始
    [[email protected] shell]# echo ${a[2]}cd[[email protected] shell]# echo ${a[1]}b[[email protected] shell]# echo ${a[0]}as
  • echo ${#a[@]} 擷取數組的元素個數
    [[email protected] shell]# echo ${#a[*]}3
  • 數組賦值與更改,如果下標不存在則會自動添加一個元素
    [[email protected] shell]# a[5]=4[[email protected] shell]# echo ${#a[*]}4[[email protected] shell]# echo ${a[*]}as b cd 4[[email protected] shell]# a[1]=2[[email protected] shell]# echo ${a[*]}as 2 cd 4
  • 數組的刪除
    [[email protected] shell]# unset a[0][[email protected] shell]# echo ${a[*]}2 cd 4[[email protected] shell]# unset a[[email protected] shell]# echo ${a[*]}
  • 數組分區
    • 從第一個開始截取3個

      [[email protected] shell]# a=(seq 1 10)
      [[email protected] shell]# echo ${a[*]}
      1 2 3 4 5 6 7 8 9 10
      1 2 3

    • 從倒數第三個開始截取2個
      8 9
  • 數組替換
    [[email protected] shell]# echo ${a[@]/7/5}1 2 3 4 5 6 5 8 9 10[[email protected] shell]# a=(${a[@]/8/3})[[email protected] shell]# echo ${a[@]}1 2 3 4 5 6 7 3 9 10
    shell項目-警示系統需求分析
  • 需求:使用shell定製各種個人化警示工具,但需要統一化管理、正常化管理。
  • 思路:指定一個指令碼包,包含主程式、子程式、設定檔、郵件引擎、輸出日誌等。
  • 主程式:作為整個指令碼的入口,是整個系統的命脈。
  • 設定檔:是一個控制中心,用它來開關各個子程式,指定各個相關聯的記錄檔。
  • 子程式:這個才是真正的監控指令碼,用來監控各個指標。
  • 郵件引擎:是由一個python程式來實現,它可以定義發郵件的伺服器、發郵件人以及寄件者密碼
  • 輸出日誌:整個監控系統要有日誌輸出。
  • 要求:我們的機器角色多種多樣,但是所有機器上都要部署同樣的監控系統,也就說所有機器不管什麼角色,整個程式架構都是一致的,不同的地方在於根據不同的角色,定製不同的設定檔。
  • 程式架構:
                                       (主目錄 mon)                                               | -------------------------------------------------------------------------------------- |                   |                         |                              |                       |bin             conf                  shares                      mail                  log[main.sh]  [mon.conf]  [load.sh 502.sh] [mail.py mail.sh]  [mon.log err.log ]bin下是主程式conf下是設定檔shares下是各個監控指令碼mail下是郵件引擎log下是日誌。

shell指令碼中的函數,shell中的數組,shell項目-警示系統

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.