次のように、Androidシェル(Tasker)でDebianタイムスタンプを日付に変換しようとしています。
日付-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
ベストアンサー1
Androiddate
と同様に、busybox
date
次のことができる必要があります。
date -D%s -d 1487411077
-D
2006年に追加され、-d@<epoch>
2010年にGNUサポートが追加されました。