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

shell脚本实现秒表功能

时间:2020-01-15 11:32:06      阅读:110      评论:0      收藏:0      [点我收藏+]

标签:bin   one   echo   done   shell   bash   The   while   实现   

#!/bin/bash
M1=0
M2=0
S1=0
S2=0
while true
do
        NUM=$(echo "${M1}${M2}:$S1$S2")
        echo -ne "\033[32m $NUM\b\r\033[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脚本实现秒表功能

标签:bin   one   echo   done   shell   bash   The   while   实现   

原文地址:https://www.cnblogs.com/IMSCZ/p/12195652.html

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