Shell編程學習:分支結構和迴圈結構

來源:互聯網
上載者:User

一。if結構

1.單分支結構

if conditionthen    statement1    statement2    ...fi

2.雙分支結構

if conditionthen    statement1    statement2    ...else    statement3    statement4fi

3.多分支結構

if conditionthen     statementelif    condition2then    statement2fi

二:case結構

case condition inpattern1)    statment    ;;pattern2)    statement2    ;;....esac

查看本欄目更多精彩內容:http://www.bianceng.cnhttp://www.bianceng.cn/OS/Linux/

三:迴圈結構之while語句

1.當型迴圈結構(while)

while conditiondo    statement1    statement2...done

當condition為真時執行

2.直到型迴圈結構(until)

until conditiondo    statement1    statement2done

當condition滿足時候結束

base提供兩個迴圈控制語句,break:用來跳出迴圈控制,continue:只結束本次迴圈,並且開始下一輪迴圈。

3.foreach迴圈和計數型迴圈

for variable in WordListdo    statement1    statement2    ...done

在結構中 in WordList可以省略,省略以後相當於in "$@"

4:C語言中的for迴圈結構

for ((exp1;exp2;exp3))do    statment1    statment2    ...done;
相關文章

聯繫我們

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