shell 數組使用簡介

來源:互聯網
上載者:User

標籤:nload   聲明   使用   擷取   set   code   符號   下標   大於   

數組簡介

bash 只提供一維數組,並且沒有限定數組的大小。類似與C語言,數組元素的下標由0開始編號。擷取數組中的元素要利用下標。下標可以是整數或算術運算式,其值應大於或等於 0。使用者可以使用指派陳述式對陣列變數賦值。

數組賦值
  • 下標賦值

    $ students[0]=Jack$ students[1]=Alex$ students[2]=Amy

    也可以使用declare顯式聲明一個數組:

    $ declare -a 數組名
  • 直接賦值

    $ students=(Jack Alex Amy)或$ declare -a studentds=(Jack Alex Amy)
  • 命令賦值
    命令的輸出格式如下

    $ lsDesktop   Downloads  Pictures  Templates  virtualenv  $ arr=($(ls))
  • 字典賦值
    可以通過declare -A命令聲明字典

    $ declare -A dict=([key1]=val1 [key2]=val2)
訪問數組
建立數組$ students=(Jack Alex Amy)
  • 通過下標訪問

    $ echo ${students[0]}Jack$ echo ${students[1]}Alex$ echo ${students[2]}Amy
  • 列出所有元素

    $ echo ${students[@]}Jack Alex Amy或$ echo ${students[*]}Jack Alex Amy

    @ 符號與 * 符號均可以列出所有元素

數組的其它操作
  • 擷取數組長度

    $ echo ${#students[@]}3
  • 列印數組下標

    $ echo ${!students[@]}0 1 2

    也可以列印字典的key 值

    $ declare -A dict=([key1]=val1 [key2]=val2)$ echo ${!dict[@]}key2 key1
  • 刪除數組

    $ unset 數組名

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.