码迷,mamicode.com
首页 > 系统相关 > 详细

[转]Shell脚本之无限循环的两种方法

时间:2017-06-19 16:24:08      阅读:169      评论:0      收藏:0      [点我收藏+]

标签:shell脚本   脚本   blog   shel   了解   用法   style   pre   shell   

方法一:

  while循环,用的比较多的

#!/bin/bash
set j=2
while true
do
        let "j=j+1"
        echo "----------j is $j--------------"
done

 

方法二:

for  ,看到这个用法时,看来是真真了解了for的含义

#!/bin/bash
set i=0
set j=0
for((i=0;i<10;))
do
        let "j=j+1"
        echo "-------------j is $j -------------------"
done

 

[转]Shell脚本之无限循环的两种方法

标签:shell脚本   脚本   blog   shel   了解   用法   style   pre   shell   

原文地址:http://www.cnblogs.com/landhu/p/7049173.html

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