1
0
Files
2016-11-30 09:03:17 +08:00

10 lines
97 B
Bash
Executable File

#!/bin/sh
CONFFILE=/etc/timezone.conf
if [ -f $CONFFILE ] ; then
. $CONFFILE
export TZ
fi
date