Convert seconds to hours, minutes, seconds

前端 未结 13 994
梦谈多话
梦谈多话 2020-12-02 14:08

How can I convert seconds to hours, minutes and seconds?

show_time() {
  ?????
}

show_time 36 # 00:00:36
show_time 1036 # 00:17:26
show_time 91925 # 25:32:0         


        
13条回答
  •  [愿得一人]
    2020-12-02 14:48

    I couldn't get Vaulter's/chepner's code to work correctly. I think that the correct code is:

    convertsecs() {
        h=$(($1/3600))
        m=$((($1/60)%60))
        s=$(($1%60))
        printf "02d:%02d:%02d\n $h $m $s
    }
    

提交回复
热议问题