pbot/applets/date.sh

16 lines
361 B
Bash
Raw Normal View History

#!/bin/bash
2021-02-07 23:05:21 +01:00
export LC_TIME=C
export TZ=UTC
TZDIR=${TZDIR:-/usr/share/zoneinfo/}
2021-02-07 23:05:21 +01:00
if (( $# )) && ! read -r TZ < <(IFS=_; find -L "$TZDIR" -type f -not -iname 'West' -iname "*$**" -printf '%P\n' -quit); then
echo "No match for '$*'."
exit 1
fi
if [[ $TZ != UTC ]]; then
_city=${TZ##*/}
echo "It's $(date) in ${_city//_/ }."
else
echo "It's $(date)."
fi