DebianタイムスタンプをAndroid Shell(Tasker)のような日付に変換しようとしています:
日付-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のdate
はbusybox
date
であるため、次のことができるはずです。
date -D%s -d 1487411077
-D
は2006年に追加され、-d@<Epoch>
àlaGNUのサポートは2010年に追加されました。