我试图用我的Raspberry Pi的正常运行时间来计算。我需要得到时间和分钟。我用
upSeconds = `/usr/bin/cut -d. -f1 /proc/uptime`
要获得现在的秒数我必须计算得到小时和分钟,我如何用Ruby计算,从目标CI知道它应该与/, *, +, -
一起使用但是我该如何使用它?
答案 0 :(得分:1)
我从未与ObjC合作,但运营商可能完全相同:
upSeconds = `/usr/bin/cut -d. -f1 /proc/uptime`
seconds = upSeconds.chomp.to_i # remove "\n" at the end and pass to int (ms lost)
hours = seconds / (60*60)
minutes = (seconds - (hours * 60 * 60)) / 60