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