shell指令碼編程之迴圈語句學習筆記_linux shell

來源:互聯網
上載者:User

本篇部落格很簡單,看一下shell編程使用到的迴圈語句,包括for迴圈,while迴圈,until迴圈,for後邊跟一個變數,然後是一個集合,將集合中的東西賦給這個變數,每次迴圈執行,這跟java中的foreach很像,while迴圈和if使用同樣的條件判斷,滿足條件執行語句,until和while相反,不滿足條件執行語句,是不是很簡單啊,下面看一下代碼吧。

複製代碼 代碼如下:

#!/bin/sh
#for迴圈最基本的用法
for var in "hello" "xiao ta" "welcome to www.jb51.net"
do
echo -n "$var "
done
echo
#萬用字元擴充
for var in $(ls *.sh)
do
echo "$var"
done

#while迴圈,後邊和if一樣跟的都是條件
echo "please input secret"
read secret
while [ "$secret" != "xiao ta" ]
do
echo "try again"
read secret
done

#until迴圈和while相反,條件為假才執行
echo "please input text"
read text
until [ "$text" = "xiao ta" ]
do
echo "try again"
read text
done

exit 0

相關文章

聯繫我們

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