shell中的函數、數組、警示系統指令碼

來源:互聯網
上載者:User

標籤:截取   大於   func   數字   UNC   設定檔   元素   技術分享   info   

1、shell中的函數

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

 函數必須要放在指令碼的最前面
案例1:

#!/bin/bash
input() {
echo "第一個參數是$1"
echo "第二個參數是$2"
echo "總共有多少個參數 $#"
echo "這個指令碼的名字是 $0"
}
read -p "input a num:" n
read -p "input a num:" m
input $n $m
案例2:

#!/bin/bash
input() {
echo "第一個參數是$1"
echo "第二個參數是$2"
echo "總共有多少個參數 $#"
echo "這個指令碼的名字是 $0"
}
input $1 $2

 函數中的運算:
案例1:

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

#!/bin/bash
sum(){
s=$[$1+$2+$3]
echo $s
}
read -p "aaa:" a
read -p "bbb:" b
read -p "ccc:" c

sum $a $b $c

 ip 顯示函數(花了很長時間才把所有的給整合好,尤其是在輸入數字時,顯示對應的網卡和IP):

#!/bin/bash
#by yumingzhen
#
echo ""
k=0
for i in `ifconfig | awk ‘/:/ {print $1}‘ |grep ":" |sed ‘s/://g‘`
do
z=$i
k=$[$k+1]
m=$k
echo $m=$i
cc=$cc$i:
done
echo "按a show all IP addr"
echo "按q|quit|Q exit"
ip_fun(){
ifconfig |grep -A1 "$id" | awk ‘/inet/ {print $2}‘
}
while :
do
echo ""
read -p "input a num to get ip_add:" n
end=`ifconfig | awk ‘/:/ {print $1}‘ |grep ":" |wc -l`
n1=`echo $n |sed ‘s/[0-9]//g‘`
if [ $n == "q" ] || [ $n == "quit" ] || [ $n == "Q" ] ;then
exit 0
elif [ $n == "a" ];then
for a in `seq 1 $end`
do
id=`echo $cc |cut -d‘:‘ -f $a`
echo $id=`ip_fun`
done
exit 0
elif [ -n "$n1" ] || [ -z "$n" ] || [ "$n" -gt "$end" ];then
echo "請輸入正確的數字,不大於$end"
continue
fi

id=`echo $cc |cut -d‘:‘ -f $n `
echo ""
echo $id IP=`ip_fun`
done

 

2、數組
@ 或 * 號

定義數組 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]

數組分區
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})

 

3、警示系統主指令碼

#!/bin/bash

#Written by aming.
# 是否發送郵件的開關
export send=1
# 過濾ip地址
export addr=`/sbin/ifconfig |grep -A1 "ens33: "|awk ‘/inet/ {print $2}‘`
dir=`pwd`
# 只需要最後一級目錄名
last_dir=`echo $dir|awk -F‘/‘ ‘{print $NF}‘`
# 下面的判斷目的是,保證執行指令碼的時候,我們在bin目錄裡,不然監控指令碼、郵件和日誌很有可能找不到
if [ $last_dir == "bin" ] || [ $last_dir == "bin/" ]; then
conf_file="../conf/mon.conf"
else
echo "you shoud cd bin dir"
exit
fi
exec 1>>../log/mon.log 2>>../log/err.log
echo "`date +"%F %T"` load average"
/bin/bash ../shares/load.sh
#先檢查設定檔中是否需要監控502
if grep -q ‘to_mon_502=1‘ $conf_file; then
export log=`grep ‘logfile=‘ $conf_file |awk -F ‘=‘ ‘{print $2}‘ |sed ‘s/ //g‘`
/bin/bash ../shares/502.sh
fi

 




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.