91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

20.16 20.17shell中的函數(上下);20.18

發布時間:2020-08-11 14:28:09 來源:網絡 閱讀:478 作者:主內安詳 欄目:系統運維

20.16 shell中的函數(上)

函數就是把一段代碼整理到了一個小單元中,并給這個小單元起

一個名字,當用到這段代碼時直接調用這個小單元的名字即可。

1.

[root@hao-01 ~]# vi 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 scritp name is $0"

echo "the number of par is $#"

}


inp $1 $2 $3

2. 執行fun1.sh腳本,后面跟函數

[root@hao-01 ~]# sh fun1.sh 1

20.17 shell中的函數(下)

1. 加法函數

[root@hao-01 ~]# vi fun2.sh

添加內容:

#!/bin/bash

sum() {

s=$[$1+$2]

echo $s

}


sum 1 10

2. 執行fun2.sh腳本:

[root@hao-01 ~]# sh -x fun2.sh

1. 輸入網卡名字,顯示網卡ip

[root@hao-01 ~]# vi fun3.sh

添加內容:

#!/bin/bash

ip()

{

ifconfig |grep -A1 "$1: "|awk '/inet/ {print $2}'

}


read -p "please input the eth name: " ech

ip $eth

2. 執行fun3.sh腳本:

[root@hao-01 ~]# sh fun3.sh

please input the eth name: ens33

20.16 20.17shell中的函數(上下);20.18

20.16 20.17shell中的函數(上下);20.18

20.18 shell中的數組

1. 定義數組

[root@hao-01 ~]# a=(1 2 3 4 5)

2. 查看a數組元素

[root@hao-01 ~]# echo ${a[*]}

20.16 20.17shell中的函數(上下);20.18

20.16 20.17shell中的函數(上下);20.183. 查看數組某個元素(數組從0開始值為1):

[root@hao-01 ~]# echo ${a[1]}

20.16 20.17shell中的函數(上下);20.18

4. 獲取數組元素 個數

[root@hao-01 ~]# echo ${#a[*]}

20.16 20.17shell中的函數(上下);20.18

5. 如果下標不存在則會自動添加一個元素:

[root@hao-01 ~]# a[5]=b

[root@hao-01 ~]# echo ${a[*]}

20.16 20.17shell中的函數(上下);20.18

數組元素賦值(更改替換):

[root@hao-01 ~]# a[5]=bbb

[root@hao-01 ~]# echo ${a[*]}

20.16 20.17shell中的函數(上下);20.18

6. 刪除數組元素:

20.16 20.17shell中的函數(上下);20.18

20.16 20.17shell中的函數(上下);20.187. 刪除(清空)數組值

[root@hao-01 ~]# unset a

[root@hao-01 ~]# echo ${a[*]}

20.16 20.17shell中的函數(上下);20.18

8. 設定數組:

[root@hao-01 ~]# a=(`seq 1 10`)

[root@hao-01 ~]# echo ${a[*]}

20.16 20.17shell中的函數(上下);20.18

9. 從第1元素開始,截取出5數值

[root@hao-01 ~]# echo ${a[*]:0:5}

20.16 20.17shell中的函數(上下);20.18

從第2元素開始,截取出5數值

[root@hao-01 ~]# echo ${a[*]:1:5}

20.16 20.17shell中的函數(上下);20.18

10. 倒數第3元素開始,截取出2數值

[root@hao-01 ~]# echo ${a[*]:0-3:2}

20.16 20.17shell中的函數(上下);20.18

11. 截取替換,8元素打印成cc66

[root@hao-01 ~]# echo ${a[@]/8/cc66}

20.16 20.17shell中的函數(上下);20.18

12. 替換元素值8元素替換成cc66

[root@hao-01 ~]# a=(${a[*]/8/cc66})

[root@hao-01 ~]# echo ${a[*]}

20.16 20.17shell中的函數(上下);20.18

替換元素值cc66元素替換成888

[root@hao-01 ~]# a=(${a[*]/cc66/888})

[root@hao-01 ~]# echo ${a[*]}

20.16 20.17shell中的函數(上下);20.18

20.19 告警系統需求分析

1. 需求:使用shell定制各種個性化告警工具,但需要統一化管理、規范化管理。

2. 思路:指定一個腳本包,包含主程序、子程序、配置文件、郵件引擎、輸出日志等。

3. 主程序:作為整個腳本的入口,是整個系統的命脈。

4. 配置文件:是一個控制中心,用它來開關各個子程序,指定各個相關聯的日志文件。

5. 子程序:這個才是真正的監控腳本,用來監控各個指標。

6. 郵件引擎:是由一個python程序來實現,它可以定義發郵件的服務器、發郵件人以及發件人密碼

7. 輸出日志:整個監控系統要有日志輸出。

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

姜堰市| 沂南县| 西昌市| 凤翔县| 井陉县| 内乡县| 阜南县| 松阳县| 南京市| 永城市| 白城市| 莒南县| 巴彦淖尔市| 荔波县| 米易县| 宁阳县| 富民县| 上栗县| 叶城县| 新余市| 左贡县| 永吉县| 资兴市| 黑龙江省| 武清区| 夏津县| 贡觉县| 青海省| 同江市| 农安县| 河南省| 辽阳市| 汉沽区| 綦江县| 横山县| 修文县| 松潘县| 东明县| 平乡县| 仁怀市| 根河市|