成都网站建设设计

将想法与焦点和您一起共享

while与until循环基本语法

while与until循环基本语法

#!/bin/bash

# demo while

i=1

while [ $i -lt 10 ];do
  echo $i
  (( i++ ))
done

# demo until

i=1

until [ $i -gt 10 ];do
  echo $i
  (( i++ ))
done

文章题目:while与until循环基本语法
文章来源:http://chengdu.cdxwcx.cn/article/gcoegp.html