Windows XP Windows 7 Windows 2003 Windows Vista Windows教程綜合 Linux 系統教程
Windows 10 Windows 8 Windows 2008 Windows NT Windows Server 電腦軟件教程
 Windows教程網 >> Linux系統教程 >> Linux教程 >> linux shell 創建序列數組(list,array)方法

linux shell 創建序列數組(list,array)方法

日期:2017/2/7 14:24:48      編輯:Linux教程
 

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

 

一、seq方法生成:


[chengmo@centos5 shell]$ aNumList=$(seq 100);
[chengmo@centos5 shell]$ echo $aNumList
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 100

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

 

[chengmo@centos5 shell]$ for i in $aNumList;do echo $i;done;
1
2
3
4……

 

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

[chengmo@centos5 ~]$ aNumList=($(seq 100));
[chengmo@centos5 ~]$ echo $aNumList
1
[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;
1
2
3
4
5
6
7
8
9
10

 

三、性能比較


[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 100

real 0m0.000s
user 0m0.001s
sys 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 100

real 0m0.003s
user 0m0.002s
sys 0m0.001s

 

 

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

Copyright © Windows教程網 All Rights Reserved