1. 程式人生 > >2018.4.20 17周3次課

2018.4.20 17周3次課

Linux學習

十七周三次課(4月20日)

20.16/20.17 shell中的函數

20.18 shell中的數組

20.19 告警系統需求分析

20.16/20.17 shell中的函數

函數就是把一段代碼整理到了一個小單元中,並給這個小單元起一個名字,當用到這段代碼時直接調用這個小單元的名字即可。

格式: function f_name() {

command

}

函數必須要放在最前面

示例1 :參數在函數裏面

vim fun1.sh

#!/bin/bash

input() {

echo "The first par is $1"

echo "The second par is $2"

echo "The third par is $3"

echo "The script name is $0"

# $0是shell的名字

echo "The number of par is $#"

# $#是函數的參數個數

}

input b a 2 3 adf

[root@aming-02 ~/shell]# sh fun1.sh

The first par is b

The second par is a

The third par is 2

The script name is fun1.sh

The number of par is 5

示例2 :參數在函數外面

vim fun2.sh

#!/bin/bash

input() {

echo "The first par is $1"

echo "The second par is $2"

echo "The third par is $3"

echo "The script name is $0"

echo "The number of par is $#"

}

input $1 $2 $3

# $1,$2,$3表示在執行腳本時,腳本名後面跟的參數,如果不寫就為空

[root@aming-02 ~/shell]# sh fun2.sh 1

The first par is 1

The second par is

The third par is

The script name is fun2.sh

The number of par is 1

示例3

vim fun3.sh

#!/bin/bash

sum() {

s=$[$1+$2]

echo $s

}

sum 1 10

[root@aming-02 ~/shell]# sh fun3.sh

11

[root@aming-02 ~/shell]# sh -x fun3.sh

+ sum 1 10

+ s=11

+ echo 11

11

示例4:

vi fun4.sh

#!/bin/bash

ip() {

ifconfig |grep -A1 "$1" |tail -1 |awk '{print $2}'

}

read -p "Please input the eth name: " eth

myip=`ip $eth`

echo "$eth address is $myip"

[root@aming-02 ~/shell]# sh -x fun4.sh

+ read -p 'Please input the eth name: ' eth

Please input the eth name: ens33

++ ip ens33

++ ifconfig

++ awk '{print $2}'

++ grep -A1 ens33

++ tail -1

+ myip=192.168.37.101

+ echo 'ens33 address is 192.168.37.101'

ens33 address is 192.168.37.101

20.18 shell中的數組

定義數組 a=(1 2 3 4 5); echo ${a[@]}

echo ${a[*]} 等同於 ${a[@]} 顯示整個數組

[root@aming-02 ~/shell]# a=(1 2 3 4 5)

[root@aming-02 ~/shell]# echo ${a[@]}

1 2 3 4 5

[root@aming-02 ~/shell]# echo ${a[*]}

1 2 3 4 5

echo ${#a[@]} 獲取數組的元素個數

[root@aming-02 ~/shell]# echo ${#a[*]}

5

echo ${a[2]} 讀取第三個元素,數組從0開始

[root@aming-02 ~/shell]# echo ${a[2]}

3

數組賦值

a[1]=100; echo ${a[@]}

[root@aming-02 ~/shell]# a[1]=100; echo ${a[@]}

1 100 3 4 5

a[5]=2; echo ${a[@]} 如果下標不存在則會自動添加一個元素

[root@aming-02 ~/shell]# a[5]=2; echo ${a[@]}

1 100 3 4 5 2

數組的刪除

unset a; unset a[1]

[root@aming-02 ~/shell]# unset a[1]

[root@aming-02 ~/shell]# echo ${a[*]}

1 3 4 5 2

[root@aming-02 ~/shell]# unset a;echo ${a[*]}

[root@aming-02 ~/shell]#

數組分片

a=(`seq 1 5`)

[root@aming-02 ~/shell]# a=(`seq 1 5`)

[root@aming-02 ~/shell]# echo ${a[*]}

1 2 3 4 5

echo ${a[@]:0:3} 從第一個元素開始,截取3個

[root@aming-02 ~/shell]# echo ${a[*]:0:3}

1 2 3

echo ${a[@]:1:4} 從第二個元素開始,截取4個

[root@aming-02 ~/shell]# echo ${a[*]:1:4}

2 3 4 5

echo ${a[@]:0-3:2} 從倒數第3個元素開始,截取2個

[root@aming-02 ~/shell]# echo ${a[@]:0-3:2}

3 4

數組替換

echo ${a[@]/3/10}

[root@aming-02 ~/shell]# echo ${a[*]/5/10}

1 2 3 4 10

a=(${a[@]/4/10})

[root@aming-02 ~/shell]# a=(${a[*]/4/10})

[root@aming-02 ~/shell]# echo ${a[*]}

1 2 3 10 5

20.19 告警系統需求分析

需求:使用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下是日誌。


2018.4.20 17周3次課