参见英文答案 >
How to measure time from adb shell with milliseconds resolution?3个
我正在尝试制作一个在Android上运行的shell脚本.我需要以比秒更精确的时间来测量时间 – 毫秒或纳秒.我怎样才能在Android Shell中执行此操作?
我正在尝试制作一个在Android上运行的shell脚本.我需要以比秒更精确的时间来测量时间 – 毫秒或纳秒.我怎样才能在Android Shell中执行此操作?
日期%N不给出以纳秒为单位的时间 – 它只给出N作为输出.我找不到任何其他命令/方式来做到这一点.
解决方法
首先安装busyBox for android:
https://play.google.com/store/apps/details?id=stericson.busybox&hl=en
然后你可以这样做:
adb shell“busyBox date%s”
以秒为单位获得时间:
adb shell“busyBox date%N”
获得纳秒秒.