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