Skip to content

Monthly Archives: October 2012

Listing Linux TZ Environment Variable

Time zones can be confusing. If you want to see a list of time-zones you can use in the Perl $ENV{TZ} = ‘xxxx’ you can have a look at the Timezone files in /usr/share/zoneinfo Here is a quick way to see the available timezones in Europe: tail -n 1 /usr/share/zoneinfo/Europe/* | sed -r ‘s/,.+//’ This […]