【Shell指令碼學習18】Shell for迴圈

來源:互聯網
上載者:User

標籤:

與其他程式設計語言類似,Shell支援for迴圈。

for迴圈一般格式為:

for 變數 in 列表do    command1    command2    ...    commandNdone

列表是一組值(數字、字串等)組成的序列,每個值通過空格分隔。每迴圈一次,就將列表中的下一個值賦給變數。

in 列表是可選的,如果不用它,for 迴圈使用命令列的位置參數。

例如,順序輸出當前列表中的數字:

  1. for loop in 1 2 3 4 5
  2. do
  3. echo "The value is: $loop"
  4. done

運行結果:

The value is: 1The value is: 2The value is: 3The value is: 4The value is: 5


順序輸出字串中的字元:

  1. for str in ‘This is a string‘
  2. do
  3. echo $str
  4. done

運行結果:

This is a string


顯示主目錄下以 .bash 開頭的檔案:

  1. #!/bin/bash
  2. for FILE in $HOME/.bash*
  3. do
  4. echo $FILE
  5. done

運行結果:

/root/.bash_history/root/.bash_logout/root/.bash_profile/root/.bashrc

【Shell指令碼學習18】Shell for迴圈

相關文章

聯繫我們

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