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

bash中变量+=,if大小判断,随机休眠

时间:2016-11-30 13:34:21      阅读:143      评论:0      收藏:0      [点我收藏+]

标签:hello   span   date   大小   and   时间   while   dom   class   

#!/bin/bash

index=0
while true;do
    echo "hello"
    (( index+=1))
    echo `date "+%H:%M:%S"`
    if [ $index -ge 5 ];then
        exit
    fi
    sleep "$(( ( RANDOM % 3 )  + 2 ))s"
done

随机时间为 2-5(包含2) 秒

bash中变量+=,if大小判断,随机休眠

标签:hello   span   date   大小   and   时间   while   dom   class   

原文地址:http://www.cnblogs.com/lurenjiashuo/p/bash-plus-equal-if-lt-random-sleep.html

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