Shell腳本中循環until命令用法筆記

在shell腳本中,可以使用until執行循環處理,如果使用until命令的話如果表達式的結果爲false時才執行循環體,直到測試表達式的值爲true的時候纔會 停止循環。 語法結果如下: until expression do command done 示例: #計算1到100的和以及1到100的奇數和 腳本內容如下: #!/bin/bash sum1=0 sum2=0 i=1 until [[
相關文章
相關標籤/搜索