The JSON-RPC would return the time in this format "time": 1346289025
. How exactly do I read it? I don't know what kind of format it is. So what time is 1346289025
?
Asked
Active
Viewed 170 times
3

user102938
- 31
- 1
date
your computer has, you can probably convert it withdate -u --date="1970-01-01 +1346289025 sec GMT"
,date -d @1346289025
, ordate -jf %s 1346289025
. – David Schwartz Sep 01 '12 at 06:31