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

Posted 云计算全栈社区

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了使用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循环实现一天倒计时的主要内容,如果未能解决你的问题,请参考以下文章

for,while循环,case分支,shell函数

Shell基础:使用for循环结构使用while循环结构基于case分支编写脚本使用Shell函数中断及退出

shell脚本之for循环

常用python日期日志获取内容循环的代码片段

shell脚本并发

怎么用shell脚本实现一个1分10秒的倒计时