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

shell脚本中生成延时

时间:2015-04-19 19:18:32      阅读:257      评论:0      收藏:0      [点我收藏+]

标签:

#!/bin/bash
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

tput sc 存储光标位置;

tput rc 恢复光标位置;

tput ed 清除从当前光标位置到行尾之间的所有内容

 

shell脚本中生成延时

标签:

原文地址:http://www.cnblogs.com/dytl/p/4439582.html

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