shell脚本实现秒表功能

Posted IMSCZ

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了shell脚本实现秒表功能相关的知识,希望对你有一定的参考价值。

#!/bin/bash
M1=0
M2=0
S1=0
S2=0
while true
do
        NUM=$(echo "${M1}${M2}:$S1$S2")
        echo -ne "33[32m $NUM
33[0m"
        (( S2++ ))
        if [ $S2 -ge 10 ];then
                (( S1++ ))
                S2=0
        fi
        if [ $S1 -ge 6 ];then
                (( M2++ ))
                S1=0
        fi
        if [ $M2 -ge 10 ];then
                (( M1++ ))
                M2=0
        fi
        sleep 1
done

以上是关于shell脚本实现秒表功能的主要内容,如果未能解决你的问题,请参考以下文章

秒表计时器

shell 脚本 片段

秒表功能实现

用于确保在任何给定时间仅运行一个 shell 脚本的 shell 片段 [重复]

用定时器实现10s秒表的计时功能,精确到小数点后一位,即能够有0.1s显示,有开始,暂停,清零的功能(C语

期中考试秒表计时器