標籤:shell函數 shell數組
[toc]
shell函數和數組一、shell中的函數1.1 函數格式1
function name { commands}
樣本1:
#! /bin/bashfunction inp(){ //定義一個inp的函數echo $1 $2 $3 $0 $# }inp 1 a 2 b //傳入參數 //傳入參數
運行結果
[[email protected] ~]# sh function1.sh1 a 2 function1.sh 4
- [ ] $1 : 第一個參數 就是如上的“2”
- [ ] $2 : 第二個參數 就是如上的“b”
- [ ] $3 : 第三個參數 就是如上的“3”
- [ ] $0 : 指令碼的本身名稱 如上的“function1.sh”
- [ ] $# : 其實就是統計有幾個參數這邊是“2 b 3 c” 那就是$# = 4
- [ ] [email protected] : 代表所有的參數 2 b 3 c
1.2 函數格式2
neme() { commands}
#!/bin/bashsum() { //定義的函數名為sum s=$[$1+$2] echo $s}sum 1 2
運行
[[email protected] ~]# sh function2.sh3
任務:輸入網卡的名字,檢查網卡的IP地址:
先從普通命令調試開始:
最終確定了有效命令為:
ifconfig |grep -A1 "ens33: " |awk ‘/inet/ {print $2}‘
函數:
#!/bin/baship(){ ifconfig |grep -A1 "$1: " |awk ‘/inet/ {print $2}‘}read -p "please input the eth name: "ethip $eth
運行結果:
[[email protected] ~]# sh funciton3.shplease input the eth name: eth33192.168.72.130192.168.72.150127.0.0.1192.168.122.1
修改完整:
vim funciton3.sh#!/bin/baship(){ ifconfig |grep -A1 "$eth " |awk ‘/inet/ {print $2}‘}read -p "please input the eth name: " ethUseIp=`ip $eth`echo "$eth adress is $UseIp"
運行結果:
[[email protected] ~]# sh funciton3.shplease input the eth name: ens33: ens33: adress is 192.168.72.130[[email protected] ~]# sh funciton3.shplease input the eth name: ens33:0:ens33:0: adress is 192.168.72.150
二、陣列變數和函數2.1 數組的操作(數組注意第一個其實是a[0] ,這和awk 是不一樣的)
[[email protected] ~]# b=(1 2 3 4) //定義一個數組a並賦值 1 2 3[[email protected] ~]# echo ${b[*]} //注意輸出a的值的格式1 2 3 4[[email protected] ~]# echo ${b[0]} //注意第一個其實是 b[0]開始1[[email protected] ~]# echo ${b[1]}2[[email protected] ~]# echo ${b[@]}1 2 3 4[[email protected] ~]# echo ${#b[@]} //擷取數組的元素個數4[[email protected] ~]# echo ${#b[*]} //擷取數組的元素個數4
2.2 給數組賦值,重定義
[[email protected] ~]# b[3]=a[[email protected] ~]# echo ${b[3]}a[[email protected] ~]# echo ${b[*]}1 2 3 a[[email protected] ~]# b[4]=a[[email protected] ~]# echo ${b[*]}1 2 3 a a
2.3 數組元素的刪除
[[email protected] ~]# unset b[2] //刪除摸個數組元素[[email protected] ~]# echo ${b[*]}1 2 a a[[email protected] ~]# unset b //刪除整個數組[[email protected] ~]# echo ${b[*]}
2.4 數組的分區
[[email protected] ~]# a=(`seq 1 10`)[[email protected] ~]# echo ${a[*]}1 2 3 4 5 6 7 8 9 10[[email protected] ~]# echo ${a[@]:3:4} //從第數組a[3]開始,截取4個。4 5 6 7[[email protected] ~]# echo ${a[@]:0-3:2} //從倒數第三個數組開始,截取兩個8 9[[email protected] ~]# echo ${a[@]/8/6} //把8換成61 2 3 4 5 6 7 6 9 10
shell函數和數組