linux shell 數組的長度計算、修改、迴圈輸出等操作

來源:互聯網
上載者:User

From :http://blog.csdn.net/snrqtdhuqf/article/details/7242309 

在shell中,陣列變數的賦值有兩種方法:

(1) name = (value1 ... valuen)此時下標從0開始

(2) name[index] = value

 example:

  1. #!/bin/sh  
  2. #arrayTest  
  3. name=(yunix yhx yfj)  
  4. echo "array is:${name[@]}"  
  5. echo "array length is:${#name[*]}"  
  6. echo ${name[1]}  
  7. name[1]=yang  
  8. echo ${name[1]}  
  9. read -a name  
  10. echo ${name[1]}  
  11. echo "loop the array"  
  12. len=${#name[*]}  
  13. i=0  
  14. while [ $i -lt $len ]  
  15. do  
  16. echo ${name[$i]}  
  17. let i++  
  18. done  

result:

array is:yunix yhx yfj
array length is:3
yhx
yang
a b c d e
b
loop the array
a
b
c
d
e

 

下面的是關於數組的輸出執行個體

example:

 

#!/bin/sh  

  1. #arrayLoopOut  
  2. read -a array  
  3. len=${#array[*]}  
  4. echo "array's length is $len"  
  5. echo "use while out the array:"  
  6. i=0  
  7. while [ $i -lt $len ]  
  8. do  
  9.         echo -n "${array[$i]}"  
  10. let i++  
  11. done  
  12. echo  
  13. echo "use for out the array:"  
  14. for ((j=0;j<"$len";j=j+1))  
  15. do  
  16.         echo -n ${array[$j]}  
  17. done  
  18. echo  
  19. echo "use for in out the array:"  
  20. for value in ${array[*]}  
  21. do  
  22. echo -n $value  
  23. done  

result:

a b c d e f g
array's length is 7
use while out the array:
abcdefg
use for out the array:
abcdefg
use for in out the array:
abcdefg

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在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.