]> git.wh0rd.org - home.git/blame_incremental - .profile.d/timezone.sh
cros-board: update
[home.git] / .profile.d / timezone.sh
... / ...
CommitLineData
1#export TZ=
2unset TZ
3if [[ $- == *i* && -n ${TZ} ]] ; then
4 echo "Timezone now set to $TZ"
5fi
6
7date() {
8 if [[ $# -eq 0 ]] ; then
9 set -- "+%a %d %b %Y %T %Z %z"
10 fi
11 command date "$@"
12}