Viewing and changing the time zone in Mac OS X via the command line uses the systemsetup
command:
$ sudo systemsetup -gettimezone
Time Zone: US/Eastern
$ sudo systemsetup -listtimezones
<snipped>
$ sudo systemsetup -settimezone US/Central
Set TimeZone: US/Central
$ sudo systemsetup -gettimezone
Time Zone: US/Central
This command is available both …