Linux 下的 shell 編程之 for 迴圈__html5

來源:互聯網
上載者:User

  linux 下 for 迴圈中可以使用 break 和 continue 關鍵字來跳出迴圈, 和java 用法一致

一 常用for迴圈結構

#文法一for 變數 in 值1 值2 值3..   do     程式塊兒   done##文法二for 變數 `命令`   do     程式塊兒   done##文法三for ((初始值; 迴圈控制; 變數變化))  do    程式塊兒  done

二 常用測試結構

   1. 輸出3次uptime

#!/bin/bashfor i in 1 2 3 4 5   do      echo "$i-->$(uptime)"  done
 

    2. 批量解壓縮當前檔案夾下所有的.tar.gz 檔案

#!/bin/bashfor i in `ls ./*.tar.gz`    do       tar -zxvf $i >/dev/null   done

    3. 求1~100 的和

#!/bin/bash#注意變數賦值的時候,=兩邊絕對不能有空格sum=0for (( i=1; i<=100; i++ ))  do     sum=$(( $sum + $i ))  doneecho "1+2+3+...+100=$sum"






相關文章

聯繫我們

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