Sponsored Content
Full Discussion: GMT to local Time conversion
Top Forums Shell Programming and Scripting GMT to local Time conversion Post 302988720 by jlliagre on Sunday 1st of January 2017 06:12:45 AM
Old 01-01-2017
Quote:
Originally Posted by Don Cragun
In fact, just knowing that ksh --version gives you no output tells us that your version of ksh is a 1988 or earlier version.
Actually not, the original ksh93 (thus dtksh) didn't implement --version yet.
Quote:
You can try running your script with /usr/dt/bin/dtksh instead of ksh and see if that works.
The original ksh93 wasn't supporting either printf as a builtin. It was introduced, including the %T format specification, in ksh93h released in 1999.

Quote:
Note that /usr/dt/bin/dtksh probably won't be present unless your sysadmin loaded the CDE option when they installed the Solaris System on your server.
CDE is likely there, as it is installed by default under most Solaris 10 instances. Only minimized, core system/reduced network rare installation are missing it.
Quote:
Or, you can look for gdate.
/usr/gnubin/date, or /usr/gnu/bin/date
/usr/gnu is a Solaris 11 directory. On Solaris 10, gnu utilities are under /usr/sfw/bin but unfortunately, GNU date is not part of them. It might have been installed by the administrator from a freeware repository and in such case, might be under /usr/local/bin or /usr/csw/bin.

Quote:
Originally Posted by mrn6430
How can I convert the following date format:

New Log Date = 2016-12-30 23:50:33 GMT

from GMT time to local time?
Here is one way to do it using Solaris 10 standard tools:

Code:
#!/bin/ksh
d="2016-12-30 23:50:33 GMT"
t=$(mktemp)
TZ=Z touch -t $(echo "$d" | sed -e 's/ GMT$//' -e 's/[ :-]//g' -e 's/\(..\)$/.\1/') $t
(
  set -- $(ls -E $t)
  rm $t
  echo $6 $7 | sed 's/..........$//'
)

Output (in CET timezone):
Code:
2016-12-31 00:50:33

This User Gave Thanks to jlliagre For This Post:
 

9 More Discussions You Might Find Interesting

1. Shell Programming and Scripting

conversion from EPOCH timestamp to local time zone

hello gurus, i want a perl/shell script which once invoked should convert a set of EPOCH timestamps to local time ( IST..i want) . how does it work ,i have an idea on that..but writing a perl/shell script for it is not possible for me...so i need help for the same. my exact requirement is... (2 Replies)
Discussion started by: abhijeetkul
2 Replies

2. Shell Programming and Scripting

Script to convert GMT to Asia/Hong Kong time

hi friends, this is my first time with this type of script so please pardon my ignorance. i have this script in which a piece of code needs to be added which can have the Asia/Hong kong time as well. system date and format is GMT so no problem with GMT and even EST is covered..i have ato add new... (5 Replies)
Discussion started by: xejatt
5 Replies

3. HP-UX

change time mode from BST to GMT

I want to know how to change the time zone from BST to GMT avoid the daylight savings in hp-ux (3 Replies)
Discussion started by: tomjones
3 Replies

4. AIX

Convert UTC time to local time ?

Hello, Using AIX6.1 box. I have UTC time value and need to convert it to local time value - I mean time zone and DST should be taken into consideration. I hope it could be done using shell environment - I don't want to write a program. thanks Vilius ---------- Post updated at 02:30 PM... (2 Replies)
Discussion started by: vilius
2 Replies

5. UNIX for Dummies Questions & Answers

UTC time and Local time

Hi, A few days ago I changed my CentOS box's timezone to -07:00. Now the date commands output look like this (run almost simultaneously, less than 1 second delay).. # date Mon Sep 5 20:23:40 PDT 2011 # date -u Tue Sep 6 03:24:05 UTC 2011 The hours difference seems correct, but why is... (2 Replies)
Discussion started by: forte712
2 Replies

6. Post Here to Contact Site Administrators and Moderators

Server Upgrade Scheduled for Today - 7:30 GMT (2:30 PM Eastern Time)

Dear All, Today, somewhere around 7:30 GMT (2:30 PM Eastern Time) www.unix.com will go down for what we hope is around 15 - 20 minutes as we change out some hardware on the server. Thank you for your patience and support. Neo (0 Replies)
Discussion started by: Neo
0 Replies

7. Shell Programming and Scripting

GMT to MST timestamp conversion

Hi Team, We have written a perl script to perform the GMT to MST timestamp conversion. Input: 2013-12-01T05:23:19.374 Output: need the given timestamp in MT (MST/MDT) #!/usr/bin/perl use strict; use warnings; use Time::Local; #always gmt #my $tval = '2013-12-01T05:23:19.374'; ... (4 Replies)
Discussion started by: kmanivan82
4 Replies

8. Shell Programming and Scripting

Local time to GMT time

Gents, Please can help with this. the column in red is the local time the column in blue is the GPStime 4153152529951 2/12/17 12:00:04.980 951 2960 41531.0 52529.0 1170882022980002 4108153261942 2/12/17 12:00:07.944 942 2959 41081.0 53261.0 1170882025944002 41511523611660... (7 Replies)
Discussion started by: jiam912
7 Replies

9. Solaris

Convert GMT date and time to CST

I need away to convert the following GMT date and time value RAW_TME= 042720171530 "mmddccyyhhmm" to Localhost time. In this case it is in central time. Here is what I came up with but it does not look efficient: RAW_TME=042720171530 logmm=`echo $RAW_TME | cut -c1-2` logdd=`echo $RAW_TME |... (4 Replies)
Discussion started by: mrn6430
4 Replies
All times are GMT -4. The time now is 09:26 AM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy