shell中的函數,shell中的數組,警示系統需求分析

來源:互聯網
上載者:User

標籤:shell   系統   需求分析   

shell中的函數

函數就是把一段代碼整理到了一個小單元中,並給這個小單元起一個名字,當用到這段代碼時直接調用這個小單元的名字即可。格式: function f_name() {
command
}
函數必須要放在最前面
樣本1
#!/bin/bash
inp (){
echo "the first is $1"
echo "the second is $2"
echo "the third is $3"
echo "the script is $0"
echo "the number is $#"
}
inp a b c d e
這個函數是用來列印參數的

[[email protected] shell]# sh fun1.sh
the first is a
the second is b
the third is c
the script is fun1.sh
the number is 5
這裡我們需要注意的是,我們的函數名不要與shell中的命令一樣。如果要去調用函數,那就在指令碼結尾處的屬名就要和函數名一樣,這樣就可以調用了。

樣本2
#!/bin/bash
sum() {
s=$[$1+$2]
echo $s
}
sum 1 11
運行結果為
[[email protected] shell]# sh fun2.sh
12
這是一個定義加法的函數,s是一個變數,等於兩個數相加,其中$1和$2就是函數的第一個參數和第二個參數相加。
$1就表示1,$2就表示2,$s就是1+11。

樣本3
#!/bin/bash
ip() {
ifconfig |grep -A1 "ens33: "|grep ‘inet‘|awk ‘{print $2}‘
}
read -p "Please input the eth name: " eth
ip $eth
這是一個專門顯示ip的指令碼。A1是顯示關鍵詞以及關鍵詞下面第一行。
Please input the eth name:的意思是顯示網卡的名字。
echo "$e address is $myip"是顯示網卡的ip

運行結果為
[[email protected] shell]# sh -x fun3.sh

  • read -p ‘please input the eth name:‘ eth
    please input the eth name:ens33
  • ip ens33
  • grep -A1 ‘ens33: ‘
  • ifconfig
  • grep inet
  • awk ‘{print $2}‘
    192.168.218.130
shell中的數組

一串字串或者一串數字所形成的變數,稱之為數組,我們可以針對數組去進行操作。
例如:
定義數組 b=(一串數字或者字串);
顯示結果 echo ${b[]}
[[email protected] shell]# b=(1 2 3)
[[email protected] shell]# echo ${b[
]}
1 2 3

我們也可以查看某一個元素的值
例如:
我們要查看某一個元素的值
echo ${a[2]}
[[email protected] shell]# echo ${b[2]}
3
這裡有個特殊性,數組從0開始,也就是0是第一個元素。

我們也可以顯示元素的個數
echo ${#b[]} 擷取數組的元素個數,#表示元素個數。
例如:
[[email protected] shell]# echo ${#b[
]}
3

數組賦值
我們也可以針對數組的其中一個元素進行賦值。
[[email protected] shell]# b[3]=a
[[email protected] shell]# echo ${b[]}
1 2 3 a
這裡面我們新增加了一個元素a,在列印的時候直接就排在的後面,這是因為下標不存在則會自動添加一個元素
也可以進行替換
[[email protected] shell]# b[0]=aaa
[[email protected] shell]# echo ${b[
]}
aaa 2 3 a

我們也可以將數組的值刪除,用unset這個命令
[[email protected] shell]# echo ${b[]}
aaa 2 3 a
[[email protected] shell]# unset b[3]
[[email protected] shell]# echo ${b[
]}
aaa 2 3

數組分區
有時候我們要截取數組中的一部分
[[email protected] shell]# echo ${a[*]}
1 2 3 4 5 6 7 8 9 10
例如
我們要截取從4到7

4 5 6 7
從後面開始截取

8 9
這裡我們需要注意的是,從後面截取的話必須要寫0-,否則不會成功。

數組的替換
[[email protected] shell]# echo ${a[]/8/6}
1 2 3 4 5 6 7 6 9 10
我們也可以直接賦值
[[email protected] shell]# echo ${a[
]/3/100}
1 2 100 4 5 6 7 8 9 10
[[email protected] shell]# echo ${a[*]/100/3}
1 2 3 4 5 6 7 8 9 10

警示系統需求分析

需求:使用shell定製各種個人化警示工具,但需要統一化管理、正常化管理。
思路:指定一個指令碼包,包含主程式、子程式、設定檔、郵件引擎、輸出日誌等。
主程式:作為整個指令碼的入口,是整個系統的命脈。
設定檔:是一個控制中心,用它來開關各個子程式,指定各個相關聯的記錄檔。
子程式:這個才是真正的監控指令碼,用來監控各個指標。
郵件引擎:是由一個python程式來實現,它可以定義發郵件的伺服器、發郵件人以及寄件者密碼
輸出日誌:整個監控系統要有日誌輸出

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.