Closed
Description
The parameter strptime
of jq-win64_1.6.exe does not work properly.
for example:
windows-64:
# echo '"2015-03-05T23:51:47Z"' | ./jq-win64_1.6.exe 'strptime("%Y-%m-%dT%H:%M:%SZ")'
jq: error (at <stdin>:1): strptime/1 not implemented on this platform
# echo '"2015-03-05T23:51:47Z"' | ./jq-win64_1.6.exe 'fromdate'
jq: error (at <stdin>:1): strptime/1 not implemented on this platform
unbutu:
root@oss-001:test_jq# echo '"2015-03-05T23:51:47Z"' | jq 'strptime("%Y-%m-%dT%H:%M:%SZ")'
[
2015,
2,
5,
23,
51,
47,
4,
63
]
root@oss-001:test_jq# echo '"2015-03-05T23:51:47Z"'| jq 'fromdate'
1425599507