Chinaunix首页 | 论坛 | 博客
  • 博客访问: 401382
  • 博文数量: 199
  • 博客积分: 154
  • 博客等级: 入伍新兵
  • 技术积分: 1530
  • 用 户 组: 普通用户
  • 注册时间: 2011-03-14 08:43
文章分类

全部博文(199)

文章存档

2015年(101)

2014年(97)

2011年(1)

分类: LINUX

2015-06-30 19:15:38

#!/bin/bash
#sleep.sh
echo -n Count:
tput sc
count=0;
while true;
do
    if [ $count -lt 40 ];
    then
        let count++;
        sleep 1;
        tput rc
        tput ed
        echo -n $count;
    else  exit 0;
    fi
done
阅读(905) | 评论(0) | 转发(0) |
0

上一篇:passwd

下一篇:debug

给主人留下些什么吧!~~