I would like to know if it's possible to get the time zone abbreviation (example: EST, CST, PST) by simply using POSIX ? I can get the full time zone name (example: Pacific Standard Time) by using POSIX with the following code:
use POSIX;
print strftime("%Z", localtime()), "\n";
I know there are modules available for date/time manipulation but since I only need to get the time zone abbreviation, I would like to avoid using a big module just for that.
Any help would be greatly appreciated.
Thanks
%Zinter alia is not portable. – daxim Jan 26 '12 at 18:36print strftime("%Z",localtime)=~/([A-Z])/g– mob Jan 26 '12 at 18:51