首页 > 学院 > 操作系统 > 正文

shell脚本中生成延时

2024-06-28 13:20:58
字体:
来源:转载
供稿:网友
shell脚本中生成延时
#!/bin/bashecho -n count:tput sccount=0;while true;doif [ $count -lt 40 ];then   let count++;   sleep 1;   tput rc   tput ed   echo -n $count;else exit 0;fidone

tput sc 存储光标位置;

tput rc 恢复光标位置;

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


发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表