1. 程式人生 > >2018-06-01Linux學習

2018-06-01Linux學習

Linux 學習

20.16-17 shell中的函數

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

格式: function f_name() {
command
}
函數必須要放在最前面

示例1
#!/bin/bash
input() {
? ? echo $1 $2 $# $0
}

input 1 a b

示例2
#!/bin/bash
sum() {
? ? s=$[$1+$2]
? ? echo $s
}
sum 1 2

示例3
#!/bin/bash
ip() {
? ? ifconfig |grep -A1 "$1 " |tail -1 |awk ‘{print $2}‘|awk -F‘:‘ ‘{print $2}‘

}
read -p "Please input the eth name: " e
myip=ip $e
echo "$e address is $myip"

操作過程

案例1

[root@linux-01 shell]# vim fun1.sh

#!/bin/bash
function inp(){
echo $1 $2 $3 $0 $#
}
inp 1 a 2

[root@linux-01 shell]# sh fun1.sh 
1 a 2 fun1.sh 3

[root@linux-01 shell]# vim fun1.sh

#!/bin/bash
function inp(){

echo "The first par is $1"
echo "The second par is $2"
echo "The third par is $3"
echo "The scrip name par is $0"
echo "The number of par is $#"
}
inp b a 5 w z x

[root@linux-01 shell]# sh fun1.sh 
The first par is b
The second par is a
The third par is 5
The scrip name par is fun1.sh
The number of par is 6

[root@linux-01 shell]# vim fun1.sh

#!/bin/bash
function inp(){
echo "The first par is $1"
echo "The second par is $2"
echo "The third par is $3"
echo "The scrip name par is $0"
echo "The number of par is $#"
}
inp $1 $2 $3 $4 $5 $6

[root@linux-01 shell]# sh fun1.sh 6 w
The first par is 6
The second par is w
The third par is 
The scrip name par is fun1.sh
The number of par is 2

[root@linux-01 shell]# sh fun1.sh 6 w d a f e g q
The first par is 6
The second par is w
The third par is d
The scrip name par is fun1.sh
The number of par is 6

案例2

[root@linux-01 shell]# vim fun2.sh

#!/bin/bash
sum(){
s=$[$1+$2]
echo $s
}
sum 1 2

[root@linux-01 shell]# sh fun2.sh 
3

案例3

[root@linux-01 shell]# ifconfig| grep -A1 "ens33: "| tail -1| awk ‘{print $2}‘
192.168.106.160

[root@linux-01 shell]# ifconfig| grep -A1 "ens33: "| tail -1| awk ‘/inet/ {print $2}‘
192.168.106.160

[root@linux-01 shell]# vim fun3.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@linux-01 shell]# sh fun3.sh 
Please input the eth name: ens33
ens33 address is 192.168.106.160

[root@linux-01 shell]# sh fun3.sh 
Please input the eth name: ens37
ens37 address is 172.16.166.130

20.18 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})

操作過程

定義數組

[root@linux-01 shell]# b=(1 2 3)
[root@linux-01 shell]# echo $b
1
[root@linux-01 shell]# echo ${b[@]}
1 2 3
[root@linux-01 shell]# echo ${b[*]}
1 2 3
[root@linux-01 shell]# echo ${b[0]}
1
[root@linux-01 shell]# echo ${b[1]}
2
[root@linux-01 shell]# echo ${b[2]}
3
[root@linux-01 shell]# echo ${#b[*]}
3

數組賦值

[root@linux-01 shell]# b[3]=a
[root@linux-01 shell]# echo ${b[*]}
1 2 3 a
[root@linux-01 shell]# b[3]=aaa
[root@linux-01 shell]# echo ${b[*]}
1 2 3 aaa

[root@linux-01 shell]# unset b[3]
[root@linux-01 shell]# echo ${b[*]}
1 2 3

[root@linux-01 shell]# unset b
[root@linux-01 shell]# echo ${b[*]}

數組分片

[root@linux-01 shell]# a=(`seq 1 10`)
[root@linux-01 shell]# echo ${a[*]}
1 2 3 4 5 6 7 8 9 10
[root@linux-01 shell]# echo ${a[@]:3:4}
4 5 6 7
[root@linux-01 shell]# echo ${a[@]:0-3:2}
8 9
[root@linux-01 shell]# echo ${a[@]/8/6}
1 2 3 4 5 6 7 6 9 10

20.19 告警系統需求分析

shell項目-告警系統

需求:使用shell定制各種個性化告警工具,但需要統一化管理、規範化管理。
思路:指定一個腳本包,包含主程序、子程序、配置文件、郵件引擎、輸出日誌等。
主程序:作為整個腳本的入口,是整個系統的命脈。
配置文件:是一個控制中心,用它來開關各個子程序,指定各個相關聯的日誌文件。
子程序:這個才是真正的監控腳本,用來監控各個指標。
郵件引擎:是由一個python程序來實現,它可以定義發郵件的服務器、發郵件人以及發件人密碼
輸出日誌:整個監控系統要有日誌輸出。

要求:我們的機器角色多種多樣,但是所有機器上都要部署同樣的監控系統,也就說所有機器不管什麽角色,整個程序框架都是一致的,不同的地方在於根據不同的角色,定制不同的配置文件。

程序架構:? ?

(主目錄 mon)
1、bin: [main.sh]
2、conf: [ mon.conf]
3、shares: [load.sh 502.sh]
4、mail: [mail.py mail.sh]
5、log: [mon.log??err.log ]

bin下是主程序
conf下是配置文件
shares下是各個監控腳本
mail下是郵件引擎
log下是日誌。

2018-06-01Linux學習