系统相关
首页 > 系统相关> > 将unix时间戳转换为android shell中的日期

将unix时间戳转换为android shell中的日期

作者:互联网

我尝试将Debian时间戳转换为Android shell(Tasker)中的日期,如:

date -d @ 1487411077

但是得到一些错误.

怎么做?

Tasker错误看起来像:

12.32.45/Variables doreplresult: |sh date -d @%last| -> |sh date -d @1487411077
|
12.32.45/Variables doreplresult: |sh date -d @%last| -> |sh date -d @1487411077
|
12.32.45/E Shell Ausführen: %last -> %last
12.32.45/E Shell Ausführen:  -> 
12.32.45/E Shell Ausführen:  -> 
12.32.45/Shell runBackground sh date -d @1487411077
 root: true timeout: -1
12.32.45/Shell start process-thread ID 1013
12.32.45/E add wait type Shell1 time 2147483647
12.32.45/E add wait type Shell1 done
12.32.45/E add wait task
12.32.45/Variables doreplresult: |%last| -> |%last|
12.32.45/E Fehler: 127

编辑:

Android日期是busybox,我必须使用busybox date -d @ 1487411077

解决方法:

由于Android的日期是busybox日期,您应该可以:

date -D%s -d 1487411077

-D在2006年添加,同时支持-d @< epoch> àlaGNU于2010年添加.

标签:android,shell,timestamps
来源: https://codeday.me/bug/20190815/1660267.html