91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

怎么在Shell中動態生成數組

發布時間:2021-03-19 15:56:14 來源:億速云 閱讀:629 作者:Leah 欄目:開發技術

本篇文章給大家分享的是有關怎么在Shell中動態生成數組,小編覺得挺實用的,因此分享給大家學習,希望大家閱讀完這篇文章后可以有所收獲,話不多說,跟著小編一起來看看吧。

方法一:

通過while 循環得到需要的結果:

start=1;

total=0;

while [ $start -le 1000 ];do

  [[ $(($start%2)) == 0 ]]&&total=$(($total+$start));

  start=$(($start+1));

done;

echo $total;

 

[chengmo@centos5 ~]$ start=1;total=0;while [ $start -le 1000 ];do  [[ $(($start%2)) == 0 ]]&&total=$(($total+$start));  start=$(($start+1));done;echo $total;
250500

以上運行結果是:249500,在linux shell 中,”;”作為命令行分隔符。如果大家對于$(()) 運算符號不是很理解,可以查看:linux shell 實現 四則運算(整數及浮點) 簡單方法  ,如果對于:[[]] [] 符號,可以參考另外一篇文章linux shell 邏輯運算符、邏輯表達式詳解。


方法二:

通過 for 循環得到結果:

start=0;

total=0;

for i in $(seq $start 2 1000); do

  total=$(($total+$i));

done;

echo $total;

[chengmo@centos5 ~]$ start=0;total=0;for i in $(seq $start 2 1000); do  total=$(($total+$i));done;echo $total;    
250500

上面語句已經代碼方面明顯優于方法一,而且性能方面表現也很好。下面比較就可以發現:

比較性能:

[chengmo@centos5 ~]$ time (start=0;total=0;for i in $(seq $start 2 1000); do  total=$(($total+$i));done;echo $total;)       250500

real  0m0.016s
user  0m0.012s
sys   0m0.003s
[chengmo@centos5 ~]$ time (start=1;total=0;while [ $start -le 1000 ];do  [[ $(($start%2)) == 0 ]]&&total=$(($total+$start));  start=$(($start+1));done;echo $total;) 
250500

real  0m0.073s
user  0m0.069s
sys   0m0.004s

方法一耗時 是方法二的 6倍!


seq 使用:

seq [OPTION]... LAST
seq [OPTION]... FIRST LAST
seq [OPTION]... FIRST INCREMENT LAST

[chengmo@centos5 ~]$ seq 1000  ‘起始默認是 1,間隔默認也是1

[chengmo@centos5 ~]$seq 2 1000 ‘間隔默認是1

[chengmo@centos5 ~]$seq 1 3 10  '從1開始,到10 間隔為3 結果是:1 4 7 10

說明:默認間隔是“空格” 如果想換成其它的可以帶參數:-s

[chengmo@centos5 ~]$seq -s'#' 1 3 10

1#4#7#10

應用技巧:

 
生成連續數組系列:

[chengmo@centos5 ~]$ a=($(seq 1 3 10))  
[chengmo@centos5 ~]$ echo ${a[1]}
4
[chengmo@centos5 ~]$ echo ${a[@]}
1 4 7 10

 
生成連續相同字符:

[chengmo@centos5 ~]$ seq -s '#' 30 | sed -e 's/[0-9]*//g'
#############################

以上就是怎么在Shell中動態生成數組,小編相信有部分知識點可能是我們日常工作會見到或用到的。希望你能通過這篇文章學到更多知識。更多詳情敬請關注億速云行業資訊頻道。

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

华亭县| 宁国市| 开平市| 耿马| 镇雄县| 福贡县| 临湘市| 海盐县| 武平县| 乌鲁木齐市| 刚察县| 鸡东县| 华蓥市| 娄烦县| 枝江市| 育儿| 平潭县| 晴隆县| 霍州市| 锡林浩特市| 曲松县| 玉溪市| 江华| 房产| 佛坪县| 宕昌县| 蕉岭县| 商水县| 靖宇县| 苗栗市| 永顺县| 沭阳县| 安多县| 郴州市| 定兴县| 曲水县| 鹰潭市| 桃园市| 老河口市| 安新县| 邵阳县|