十七週三次課python
20.16/20.17shell中的函數linux
20.18shell中的數組shell
20.19告警系統需求分析vim
20.16/20.17shell中的函數數組
把一段代碼整理到了一個小單元中,並給這個小單元起一個名字,當用到這段代碼時直接調用這個小單元的名字便可。bash
函數就是一個子shell,就是一個代碼段,定義完函數就能夠引用它服務器
格式:架構
格式: function f_name() { command } 函數必需要放在最前面
[root@tianqi-02 shell]# vim fun1.sh框架
#!/bin/bash
input(){
echo $1 $2 $3 $0 $#
}
input 1 a 2函數
[root@tianqi-02 shell]# sh fun1.sh
1 a 2 fun1.sh 3
[root@tianqi-02 shell]#
[root@tianqi-02 shell]# sh -x fun1.sh
+ input 1 a 2
+ echo 1 a 2 fun1.sh 3
1 a 2 fun1.sh 3
[root@tianqi-02 shell]#
函數,能夠直接寫在腳本內,至關於直接調用
[root@tianqi-02 shell]# vim fun1.sh
#!/bin/bash
input(){
echo $1 $2 $3 $0 $#
}
input $1 $2 $3
[root@tianqi-02 shell]# sh fun1.sh 1 2 4
1 2 4 fun1.sh 3
[root@tianqi-02 shell]#
[root@tianqi-01 shell]# vim fun2.sh
#!/bin/bash
sum() {
s=$[$1+$2]
#定義變量s = $1+$2 /其中 $1爲第一個參數,$2爲第二個參數
echo $s
}
sum 1 2
#輸出第一個參數和第二個參數
[root@tianqi-01 shell]# sh fun2.sh
3
[root@tianqi-01 shell]#
[root@tianqi-01 shell]# sh -x fun2.sh
+ sum 1 2
+ s=3
+ echo 3
3
[root@tianqi-01 shell]#
[root@tianqi-02 shell]# vim fun3.sh
#!/bin/bash
ip() {
ifconfig |grep -A1 "$1: " |awk '/inet/ {print $2}'
#查看網卡,過濾出參數1及下面的一行,匹配inet行並打印出第二段
}
read -p "Please input the eth name: " e
myip=`ip $e`
echo "$e address is $myip"
[root@tianqi-02 shell]# ifconfig |grep -A1 "eno16777736"
eno16777736: flags=4163<UP,BROADCAST,RUNNING,MULTICAST> mtu 1500
inet 192.168.23.129 netmask 255.255.255.0 broadcast 192.168.23.255
[root@tianqi-02 shell]#
[root@tianqi-02 shell]# vim ip1.sh
#!/bin/bash
#coding:utf8
ip()
{
a=`ifconfig |grep -A1 "$1 " |tail -1 |awk -F" " '{print $2}'`
if [ -z "$a" ]
then
echo $1
echo "沒有這個網卡名"
exit 1
fi
b=`echo $a |grep addr`
if [ -z "$b" ]
then
echo $1
echo "此網卡沒有IP地址"
exit 1
fi
echo $a
}
read -p "請輸入你的網卡名字: " eth
ip $eth
20.18shell中的數組
seq 1 5
)1.數組,就是一串字符串或者一串數字,造成的一個變量,把這個變量叫作數組
[root@tianqi-02 ~]# b=(1 2 3) //定義數組
[root@tianqi-02 ~]# echo ${b[@]} //表示數組
1 2 3
[root@tianqi-02 ~]# echo ${b[*]} //表示數組
1 2 3
[root@tianqi-02 ~]#
2.查看某一個元素的值
[root@tianqi-02 ~]# echo ${b[1]}
2
[root@tianqi-02 ~]# echo ${b[2]}
3
[root@tianqi-02 ~]# echo ${b[0]}
1
[root@tianqi-02 ~]#
3.獲取數組元素的個數
[root@tianqi-02 ~]# echo ${#b[@]}
3
[root@tianqi-02 ~]#
[root@tianqi-02 ~]# b[3]=a
[root@tianqi-02 ~]# echo ${b[*]}
1 2 3 a
[root@tianqi-02 ~]# b[3]=aaa
[root@tianqi-02 ~]# echo ${b[*]}
1 2 3 aaa
[root@tianqi-02 ~]#
[root@tianqi-02 ~]# unset b[3]
[root@tianqi-02 ~]# echo ${b[*]}
1 2 3
[root@tianqi-02 ~]# unset b //把數組的值清空
[root@tianqi-02 ~]# echo ${b[*]}
[root@tianqi-02 ~]#
[root@tianqi-02 ~]# a=(`seq 1 10`)
[root@tianqi-02 ~]# echo ${a[*]}
1 2 3 4 5 6 7 8 9 10
[root@tianqi-02 ~]#
[root@tianqi-02 ~]# echo ${a[*]:3:4}
4 5 6 7
[root@tianqi-02 ~]#
[root@tianqi-02 ~]# echo ${a[*]:0-3:2}
8 9
[root@tianqi-02 ~]# echo ${a[*]:7:2}
8 9
[root@tianqi-02 ~]#
[root@tianqi-02 ~]# echo ${a[*]/8/6}
1 2 3 4 5 6 7 6 9 10
[root@tianqi-02 ~]#
[root@tianqi-02 ~]# a=(${a[*]/8/6})
[root@tianqi-02 ~]# echo ${a[*]}
1 2 3 4 5 6 7 6 9 10
[root@tianqi-02
20.19告警系統需求分析
友情連接:阿銘linux