1
0
Fork 0
mirror of https://github.com/notwa/rc synced 2024-04-27 18:03:23 -07:00
rc/sh/dated

20 lines
414 B
Bash

#!/usr/bin/env sh
# YES_ZSH
# YES_BASH
# YES_DASH
# YES_ASH
dated() {
local ts= u=0
[ "$1" != -u ] || { shift; u=1; }
if [ $# = 0 ]; then
# -u doesn't actually do anything here, but...
if [ $u = 1 ]; then date -u '+%s'; else date '+%s'; fi
fi
for ts; do
if [ $u = 1 ]; then date -u -d '@'"$ts"; else date -d '@'"$ts"; fi
done
}
[ -n "${preload+-}" ] || dated "$@"