vote up 1 vote down star

In a terminal session I can use date -u to get
Mon Mar 16 03:34:39 2009 UTC
However, I'd like to include the offset. I'm modifying a TextMate tab trigger so that I can insert the full date including the local offset, in standard UTC format. I believe that would be in the following form: Mon Mar 16 03:34:39 2009 UTC -0500

So, as you can see, I don't know how to get the timezone offset and combine that with formatted date results.

flag

46% accept rate

1 Answer

vote up 2 vote down check

Try this:

echo `date -u` `date +%z`
link|flag
Replaced date -u +%z by date +%z. the first one would always return +0000. – mouviciel Mar 16 at 9:56
Whoops, good catch. Thanks for the fix. – John Feminella Mar 16 at 9:57
That's perfect, thank you very much! – Michael Prescott Mar 16 at 13:39

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.