Shell中建立序列和數組(list、array)的方法_linux shell

來源:互聯網
上載者:User

關於linux數組定義,以及產生方法,請看:linux shell 動態產生 數組系列 seq提示 。這裡我主要說的是高效產生list 字串,還有數組方法。

 

一、seq方法產生:

[chengmo@centos5 shell]$ aNumList=$(seq 100);[chengmo@centos5 shell]$ echo $aNumList1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100

aNumList得到是字串,不同之處以:空格分隔開。在linux裡面,可以把它看作是list. 可以通過for…in  迴圈讀取。

[chengmo@centos5 shell]$ for i in $aNumList;do echo $i;done;1234……

如果需要產生array只需要將$(seq 100) 再加個”()”即可。

[chengmo@centos5 ~]$ aNumList=($(seq 100));[chengmo@centos5 ~]$ echo $aNumList1[chengmo@centos5 ~]$ echo ${#aNumList[@]}100

長度是100的數組。

 

二、通過內部{begin..end}產生

這種方法產生seq非常方便。通過內部運算子完成。

[chengmo@centos5 ~]$ echo {1..10}1 2 3 4 5 6 7 8 9 10[chengmo@centos5 ~]$ for a in {1..10};do echo $a;done; 12345678910

三、效能比較

[chengmo@centos5 ~]$ time echo {1..100}1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100real  0m0.000suser  0m0.001ssys   0m0.000s [chengmo@centos5 ~]$ time echo $(seq 100)1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100real  0m0.003suser  0m0.002ssys   0m0.001s

從上面可以看到,{begin..end}速度比seq調用快了不少了。 以後調用時候可以考慮通過內部操作符完成。

相關文章

聯繫我們

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