標籤:入口 print img har 不同的 必須 aaa 個人化 定義函數
shell中的函數
函數就是把一段代碼整理到了一個小單元中,並給這個小單元起一個名字,當用到這段代碼時直接調用這個小單元的名字即可。
格式: function f_name() { ?? ?? ?? ?? ?? ?? ? command? ?? ?? ?? ? }函數必須要放在最前面
[[email protected] aming]# vim fun1.sh[[email protected] aming]# cat fun1.sh #!/bin/bashfunction inp(){ echo $1 $2 $3 $0 $#}inp 1 a 2[[email protected] aming]# sh fun1.sh 1 a 2 fun1.sh 3[[email protected] aming]# sh -x fun1.sh + inp 1 a 2+ echo 1 a 2 fun1.sh 31 a 2 fun1.sh 3[[email protected] aming]# vi fun1.sh [[email protected] aming]# cat fun1.sh #!/bin/bashfunction inp(){ echo "The first par is $1" echo "The second 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 adf[[email protected] aming]# sh fun1.sh The first par is bThe second par is aThe third par is 2the scritp name is fun1.shthe number of par is 5[[email protected] aming]# sh -x fun1.sh + inp b a 2 3 adf+ echo ‘The first par is b‘The first par is b+ echo ‘The second par is a‘The second par is a+ echo ‘The third par is 2‘The third par is 2+ echo ‘the scritp name is fun1.sh‘the scritp name is fun1.sh+ echo ‘the number of par is 5‘the number of par is 5[[email protected] aming]#
[[email protected] aming]# vim fun2.sh[[email protected] aming]# cat fun2.sh #!/bin/bashsum() { s=$[$1+$2] echo $s}sum 1 2[[email protected] aming]# sh fun2.sh 3[[email protected] aming]# sh -x fun2.sh + sum 1 2+ s=3+ echo 33[[email protected] aming]#
[[email protected] aming]# vim fun3.sh [[email protected] aming]# cat fun3.sh #!/bin/baship(){ ifconfig |grep -A1 "$1: "|awk ‘/inet/ {print $2}‘}read -p "Please input the eth name: " ethip $eth[[email protected] aming]# sh fun3.sh Please input the eth name: ens33172.16.111.100[[email protected] aming]# sh -x fun3.sh + read -p ‘Please input the eth name: ‘ ethPlease input the eth name: ens33+ ip ens33+ grep -A1 ‘ens33: ‘+ awk ‘/inet/ {print $2}‘+ ifconfig172.16.111.100
shell中的數組1.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[@]} 如果下標不存在則會自動添加一個元素
數組的刪除
- unset a; unset a[1]
[[email protected] aming]# b=(1 2 3)[[email protected] aming]# echo ${b[@]}1 2 3[[email protected] aming]# echo ${b[*]}1 2 3[[email protected] aming]# echo ${b[1]}2[[email protected] aming]# echo ${b[2]}3[[email protected] aming]# echo ${b[0]}1[[email protected] aming]# echo ${#b[@]}3[[email protected] aming]# b[3]=a[[email protected] aming]# echo ${b[*]}1 2 3 a[[email protected] aming]# b[3]=aaa[[email protected] aming]# echo ${b[*]}1 2 3 aaa[[email protected] aming]# unset b[3] //刪除數組[[email protected] aming]# echo ${b[*]}1 2 3[[email protected] aming]# unset b[[email protected] aming]# echo ${b[*]}[[email protected] aming]#
2.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})
[[email protected] aming]# a=(`seq 1 10`)[[email protected] aming]# echo ${a[*]}1 2 3 4 5 6 7 8 9 10[[email protected] aming]# echo ${a[@]:3:4}4 5 6 7[[email protected] aming]# echo ${a[@]:0-3:2}8 9[[email protected] aming]# echo ${a[@]/8/6}1 2 3 4 5 6 7 6 9 10[[email protected] aming]# a=(${a[@]/8/6})[[email protected] aming]# echo ${a[@]}1 2 3 4 5 6 7 6 9 10[[email protected] aming]#
警示系統需求分析1.shell項目-警示系統
- 需求:使用shell定製各種個人化警示工具,但需要統一化管理、正常化管理。
- 思路:指定一個指令碼包,包含主程式、子程式、設定檔、郵件引擎、輸出日誌等。
- 主程式:作為整個指令碼的入口,是整個系統的命脈。
- 設定檔:是一個控制中心,用它來開關各個子程式,指定各個相關聯的記錄檔。
- 子程式:這個才是真正的監控指令碼,用來監控各個指標。
- 郵件引擎:是由一個python程式來實現,它可以定義發郵件的伺服器、發郵件人以及寄件者密碼
輸出日誌:整個監控系統要有日誌輸出。
- 要求:我們的機器角色多種多樣,但是所有機器上都要部署同樣的監控系統,也就說所有機器不管什麼角色,整個程式架構都是一致的,不同的地方在於根據不同的角色,定製不同的設定檔。
bin下是主程式;
conf下是設定檔;
shares下是各個監控指令碼;
mail下是郵件引擎;
log下是日誌。
shell中的函數、shell的數組、警示系統需求分析