10 lines
97 B
Bash
Executable File
10 lines
97 B
Bash
Executable File
#!/bin/sh
|
|
|
|
CONFFILE=/etc/timezone.conf
|
|
|
|
if [ -f $CONFFILE ] ; then
|
|
. $CONFFILE
|
|
export TZ
|
|
fi
|
|
|
|
date |