[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
bug#71986: RFC: date @ to support ms.
From: |
Paul Eggert |
Subject: |
bug#71986: RFC: date @ to support ms. |
Date: |
Tue, 9 Jul 2024 14:39:15 +0200 |
User-agent: |
Mozilla Thunderbird |
On 7/9/24 03:19, Richard Neill wrote:
IP_JSON=$(curl https://whatsmyip.dev/api/ip)
TS=$(echo $IP_JSON | jq '.ts' -r)
TS=$(echo "$TS/1000" | bc)
DATE=$(date --date @$TS)
This is better, as it saves on subprocesses:
IP_JSON=$(curl https://whatsmyip.dev/api/ip)
TS=$(jq -nr "$IP_JSON|.ts")
DATE=$(date -d @$((TS / 1000)))
Anyway, I don't want to waste everyone's time, so if I haven't convinced
you, I'll leave it here, and say thank you very much for your
consideration.
You're welcome; closing the bug report.