1
0
Fork 0
mirror of https://github.com/notwa/rc synced 2024-05-20 10:53:23 -07:00
rc/sh/now
Connor Olding 4889b793af use UTC for now
i don't like this, but it's my best option to make things mostly monotonic.
2019-05-27 11:46:16 +02:00

40 lines
650 B
Bash
Executable File

#!/usr/bin/env bash
now() {
local dt=
local fmt='+%F_%T_%N'
if [ -z "$1" ]; then
dt="$(date -u "$fmt")"
elif [ -e "$1" ]; then
dt="$(date -u -r "$1" "$fmt")"
else
dt="$(date -u -d "$1" "$fmt")"
fi
local F= T= N=
F=${dt%%_*}
T=${dt#*_}
T=${T%_*}
N=${dt##*_}
local H= M= S=
H=${T%%:*}
M=${T#*:}
M=${M%:*}
S=${T##*:}
# don't interpret numbers as octal
F=${F#0*}
T=${T#0*}
N=${N#0*}
H=${H#0*}
M=${M#0*}
S=${S#0*}
local ms=
let 'ms=(H*60*60+M*60+S)*1000+N/1000000'
ms=$(printf '%08i' $ms)
echo "${F}_${ms}"
}
now "$@"