Shell指令碼(函數,shell中的數組)

來源:互聯網
上載者:User

標籤:awk   結果   截取   root   color   fun   rgb   abs   com   

函數

函數就是把一段代碼整理到一個小單元中,並給這個小單元起一個名字,當用到這段代碼時直接調用這個小單元的名字即可。

格式:function f_name(){

          command

          }

函數必須放在最前面,函數名可以自己定義。


案例一:

[[email protected] shell]# vim fun.sh 

#!/bin/bash

function inp() {

    echo $1 $2 $3 $10 ${10} ${11} $0 $# [$*]

}

inp 1 2 3 4 5 6 7 8 9 34 55


[[email protected] shell]# sh fun.sh 

1 2 3 10 34 55 fun.sh 11 [1 2 3 4 5 6 7 8 9 34 55]


注意$10並不能列印出第10個函數,當n>=10時,用{10}來擷取函數。$0表示指令碼名字。$#表示多少個函數。


案例二:

[[email protected] shell]# vim fun1.sh


#/bin/bash

sum() {

      s=$[$1+$2]

      echo $s

}

sum 22 2


[[email protected] shell]# sh fun1.sh

24




案例三:

寫一個指令碼,輸入網卡號則顯示該往卡上的ip。

#/bin/bash

ip() {

              ifconfig |grep -A1 "$1" |tail -1 |awk '{print $2}'

}

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

myip=`ip $e`

echo "$e address is $myip"



運行結果:

[[email protected] shell]# sh fun2.sh 

please input the eth name: ens33

ens33 address is 192.168.52.50




Shell中的數組


定義數組:

[[email protected] ~]# a=(1 2 3 4 5 6)

查看數組全部值:

[[email protected] ~]# echo ${a[@]}

1 2 3 4 5 6

[[email protected] ~]# echo ${a[*]}

1 2 3 4 5 6

查看數組單一的值:(從零開始)

[[email protected] ~]# echo ${a[0]}

1

[[email protected] ~]# echo ${a[1]}

2

[[email protected] ~]# echo ${a[2]}

3


給數組賦值或更改:

[[email protected] ~]# a[2]=aaa

[[email protected] ~]# echo ${a[*]}

1 2 aaa 4 5 6


數組的刪除:

刪除數組裡的一個值:

[[email protected] ~]# unset a[1]

[[email protected] ~]# echo ${a[*]}

1 aaa 4 5 6

[[email protected] ~]# unset a[0]

[[email protected] ~]# echo ${a[*]}

aaa 4 5 6


刪除整個數組

[[email protected] ~]# unset a

[[email protected] ~]# echo ${a[*]}



刪除筆記修改筆記

數組分區:

[[email protected] ~]# echo ${b[@]}

1 2 3 4 5 6


格式:echo ${數組名稱[@]:從第幾個元素開始:截取幾個}


從第一個元素開始,截取2個:

[[email protected] ~]# echo ${b[@]:0:2}

1 2


從第二個元素開始,截取3個:

[[email protected] ~]# echo ${b[@]:1:3}

2 3 4


那麼倒著應該怎麼截取呢:

格式:echo ${數組名稱[@]:0-倒數第幾個元素:截取幾個}


從倒數第2個元素開始,截取2個

[[email protected] ~]# echo ${b[@]:0-2:2}

5 6


數組替換

臨時替換:

[[email protected] ~]# echo ${b[@]/5/6}

1 2 3 4 6 6

[[email protected] ~]# echo ${b[@]}

1 2 3 4 5 6


永久替換:

[[email protected] ~]# b=(${b[@]/5/6})

[[email protected] ~]# echo ${b[@]}

1 2 3 4 6 6


Shell指令碼(函數,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.