1. 程式人生 > >shell函數和數組

shell函數和數組

shell函數 shell數組

[toc]

shell函數和數組

一、shell中的函數

1.1 函數格式1

function name {
    commands
}

示例1:

#! /bin/bash

function inp(){             //定義一個inp的函數

echo $1 $2 $3 $0 $#         

}

inp 1 a 2 b                 //傳入參數             //傳入參數

運行結果

[root@xavi ~]# sh function1.sh
1 a 2 function1.sh 4
  • [ ] $1 : 第一個參數 就是如上的“2”
  • [ ] $2 : 第二個參數 就是如上的“b”
  • [ ] $3 : 第三個參數 就是如上的“3”
  • [ ] $0 : 腳本的本身名稱 如上的“function1.sh”
  • [ ] $# : 其實就是統計有幾個參數這邊是“2 b 3 c” 那就是$# = 4
  • [ ] $@ : 代表所有的參數 2 b 3 c

1.2 函數格式2

neme() {
    commands
}
  • 示例1
#!/bin/bash

sum() {             //定義的函數名為sum
    s=$[$1+$2]
    echo $s
}
sum 1 2

運行

[root@xavi ~]# sh function2.sh
3
  • 示例2

任務:輸入網卡的名字,檢查網卡的IP地址:

先從普通命令調試開始:

技術分享圖片

最終確定了有效命令為:

ifconfig |grep -A1 "ens33: " |awk ‘/inet/ {print $2}‘

函數:

#!/bin/bash
ip()
{
  ifconfig |grep -A1 "$1: " |awk ‘/inet/ {print $2}‘
}

read -p "please input the eth name: "eth
ip $eth

運行結果:

[root@xavi ~]# sh funciton3.sh
please input the eth name: eth33
192.168.72.130
192.168.72.150
127.0.0.1
192.168.122.1

修改完整:

vim funciton3.sh

#!/bin/bash
ip()
{
  ifconfig |grep -A1 "$eth " |awk ‘/inet/ {print $2}‘
}

read -p "please input the eth name: " eth
UseIp=`ip $eth`
echo "$eth adress is $UseIp"

運行結果:

[root@xavi ~]# sh funciton3.sh
please input the eth name: ens33: 
ens33: adress is 192.168.72.130
[root@xavi ~]# sh funciton3.sh
please input the eth name: ens33:0:
ens33:0: adress is 192.168.72.150

二、數組變量和函數

2.1 數組的操作(數組註意第一個其實是a[0] ,這和awk 是不一樣的)

[root@xavi ~]# b=(1 2 3 4) //定義一個數組a並賦值 1 2 3
[root@xavi ~]# echo ${b[*]} //註意輸出a的值的格式
1 2 3 4
[root@xavi ~]# echo ${b[0]} //註意第一個其實是 b[0]開始
1
[root@xavi ~]# echo ${b[1]}
2
[root@xavi ~]# echo ${b[@]}
1 2 3 4
[root@xavi ~]# echo ${#b[@]} //獲取數組的元素個數
4
[root@xavi ~]# echo ${#b[*]} //獲取數組的元素個數
4

2.2 給數組賦值,重定義

[root@xavi ~]# b[3]=a
[root@xavi ~]# echo ${b[3]}
a
[root@xavi ~]# echo ${b[*]}
1 2 3 a
[root@xavi ~]# b[4]=a
[root@xavi ~]# echo ${b[*]}
1 2 3 a a

2.3 數組元素的刪除

[root@xavi ~]# unset b[2] //刪除摸個數組元素
[root@xavi ~]# echo ${b[*]}
1 2 a a
[root@xavi ~]# unset b  //刪除整個數組
[root@xavi ~]# echo ${b[*]}

2.4 數組的分片

[root@xavi ~]# a=(`seq 1 10`)
[root@xavi ~]# echo ${a[*]}
1 2 3 4 5 6 7 8 9 10
[root@xavi ~]# echo ${a[@]:3:4} //從第數組a[3]開始,截取4個。
4 5 6 7
[root@xavi ~]# echo ${a[@]:0-3:2} //從倒數第三個數組開始,截取兩個
8 9

[root@xavi ~]# echo ${a[@]/8/6} //把8換成6
1 2 3 4 5 6 7 6 9 10  

shell函數和數組