8 lines
125 B
Plaintext
Executable File
8 lines
125 B
Plaintext
Executable File
get_TZ ()
|
|
{
|
|
# Get the time zone that the system is operating in.
|
|
|
|
cat /etc/environment | grep TZ | awk -F'=' '{print $2}'
|
|
}
|
|
|