shell數組的使用

來源:互聯網
上載者:User

標籤:[1]   賦值   截取   元素   one   unset   --   lap   list   

定義:  array=(1 2 3)

echo ${array[0]}

echo ${array[1]}

echo ${array[2]}

echo ${array[*]}   所有元素

echo ${array[@]}   數組的長度

數組賦值

array=(1 2 3)   此時數組中有3個元素

array[3]=4       此時數組中為4個元素

刪除

unset array[0]  刪除了第0個元素

截取

array=(1 2 3 4 5)

${array[@]:1:3}   截取1號到3號

結果2 3 4

echo ${array[@]:3:2}

結果4 5

數組替換

echo ${array[@]/5/6}   把數組中5替換成6,臨時生效,元素族未被修改

結果 1 2 3 4 6

 

將結果變為數組

array=($(ls))

列印

所有元素  ${array[@]}或者${array[*]}

數組長度  ${#array[@]}或者${#array[*]}

單個元素  ${array[i]}

 

使用數組的一個例子,

                                gamelist=${PWD}/gamelist                                for pid in `awk ‘{print $7}‘ $gamelist`                                do                                    pingtai=`awk ‘/\<‘‘‘$pid‘‘‘\>/{print $4}‘ $gamelist`                                    daqu=`awk ‘/\<‘‘‘$pid‘‘‘\>/{print $6}‘ $gamelist`                                    destdir=${pingtai}cq_lycqly_s$daqu                                    dbname=${pingtai}cq_s$daqu                                    dbip=`awk ‘/\<‘‘‘$pid‘‘‘\>/{print $5}‘ $gamelist`                                    array=($(awk ‘/\<‘‘‘$pid‘‘‘\>/{print}‘ $gamelist))                                    for i in {0..2}                                    do                                       lanip=`echo ${array[i]}|cut -d: -f1`                                       port=`echo ${array[i]} |cut -d: -f2`                                        echo ${array[*]}echo ---------------------------------------------------------------#                                        array=($(echo ${array[@]:1}))                                        echo $lanipecho --------------------------------------------------------------                                        echo $port                                    done                                done
View Code

 

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.