안드로이드 셸에서 유닉스 타임스탬프를 날짜로 변환

안드로이드 셸에서 유닉스 타임스탬프를 날짜로 변환

다음과 같이 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

Android date와 마찬가지로 busybox date다음을 수행할 수 있어야 합니다.

date -D%s -d 1487411077

-D2006년에 추가되었고, -d@<epoch>2010년에 GNU 지원이 추가되었습니다.

관련 정보