码迷,mamicode.com
首页 > 其他好文 > 详细

5.while

时间:2020-06-16 23:24:10      阅读:77      评论:0      收藏:0      [点我收藏+]

标签:例子   comm   one   command   start   done   man   ++   bin   

1.结构

  while condition
  do
        command
  done

例子:

  #!/bin/bash
  int=1
  while (($int<=5))
  do
        echo $int
        let "int++"
  done

2.无线循环的例子

  while :
  do
        command
  done
  while ture
  do
        command
  done

5.while

标签:例子   comm   one   command   start   done   man   ++   bin   

原文地址:https://www.cnblogs.com/huangdengtao/p/13149582.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!