Last active
February 22, 2025 19:35
-
-
Save ddre54/1e217fbd7e28b5e864dfac31759e66e7 to your computer and use it in GitHub Desktop.
Mac OS X - Terminal commands for changing time zones in the machine
This file contains 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
# Useful for testing things that are time zone | |
# sensitive - like scheduling things | |
# Get current timezone | |
sudo systemsetup -gettimezone | |
# Get list of available timezones | |
sudo systemsetup -listtimezones | |
# Set the timezone to the selected timezone | |
# sudo systemsetup -settimezone <timezone> | |
sudo systemsetup -settimezone America/New_York | |
sudo systemsetup -settimezone Europe/Paris |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Thank U! It's work for me.