pbot/applets/date.sh

16 lines
361 B
Bash
Executable File

#!/bin/bash
export LC_TIME=C
export TZ=UTC
TZDIR=${TZDIR:-/usr/share/zoneinfo/}
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