Created
May 10, 2019 19:02
-
-
Save cerealskill/f296fe77e50378a7a906244653d69f3a to your computer and use it in GitHub Desktop.
Change Time Zone - CentOS 7
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
echo "(1/4) ------------- Actual - Time Zone ------------"; | |
date | |
echo "(2/4) ------------- Lista Disponible - Time Zone ------------"; | |
sudo cd /usr/share/zoneinfo/ | |
sudo ls -all | |
echo "(3/4) ------------- Encontrar - Time Zone ------------"; | |
sudo tzselect | |
echo "(4/4) ------------- Cambiar - Time Zone ------------"; | |
sudo timedatectl set-timezone America/Santiago |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment