7 lines
108 B
Bash
Executable File
7 lines
108 B
Bash
Executable File
#!/bin/bash -e
|
|
|
|
tz="$(curl -Ssf https://ipapi.co/timezone)"
|
|
|
|
sudo timedatectl set-timezone "$tz"
|
|
echo "$tz"
|