Shell 之 while 語句

while循環用於不斷執行一系列命令,也用於從輸入文件中讀取數據;命令通常爲測試條件。 while循環格式爲: while condition do command done 以下是一個基本的while循環,測試條件是:如果int小於等於5,那麼條件返回真。int從0開始,每次循環處理時,int加1。運行上述腳本,返回數字1到5,然後終止。 #!/bin/bash int=1 while(
相關文章
相關標籤/搜索