首页 > 代码库 > 使用shell脚本for循环实现一天倒计时
使用shell脚本for循环实现一天倒计时
#!/bin/bash # 此脚本用于实现一天倒计时 # 2017-06-01 # 房佳亮 clear for ((h=23;h>0;h--)) do [ $h -gt 0 -a $h -lt 10 ] && h=0$h for ((m=59;m>0;m--)) do [ $m -gt 0 -a $m -lt 10 ] && m=0$m for ((s=59;s>0;s--)) do [ $s -gt 0 -a $s -lt 10 ] && echo $h:$m:0$s || echo $h:$m:$s sleep 1 clear done done done
使用shell脚本for循环实现一天倒计时
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。