6 lines
113 B
Bash
6 lines
113 B
Bash
|
#!/usr/bin/env bash
|
||
|
|
||
|
TZ=$(cat /etc/timezone)
|
||
|
rm -rf /etc/localtime
|
||
|
ln -sf /usr/share/zoneinfo/$TZ /etc/localtime
|