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

使用shell脚本for循环实现一天倒计时

时间:2017-06-01 16:32:51      阅读:222      评论:0      收藏:0      [点我收藏+]

标签:ash   log   blog   脚本   --   for循环   echo   logs   div   

#!/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循环实现一天倒计时

标签:ash   log   blog   脚本   --   for循环   echo   logs   div   

原文地址:http://www.cnblogs.com/crushlinux/p/6929143.html

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