Epoch & Unix Timestamp Conversion Tools


 
Thread Tools Search this Thread
Top Forums Shell Programming and Scripting Epoch & Unix Timestamp Conversion Tools
# 1  
Old 03-08-2012
Epoch & Unix Timestamp Conversion Tools

Hi All,


Please read the below data carefully.


I need an unix command for converting unix timestamp to Epoch timestamp.


I need to daily convert this today's unix(UTC) time to epoch time, so i am thinking to make a shellscript for this.


Please help me for this by providing the commands.


Eg: 08 Mar 2012 08:00:00 UTC to epoch time

and 08 Mar 2012 06:00:00 UTC to epoch time


for epochtime details you can refer this link
Epoch Converter - Unix Timestamp Converter


Thanks
# 2  
Old 03-08-2012
If you have GNU date, you could do this:
Code:
$ date -d "08 Mar 2012 08:00:00" +%s
1331193600

This User Gave Thanks to balajesuri For This Post:
# 3  
Old 03-08-2012
Thanks a lot balajesuri Smilie

---------- Post updated at 04:21 AM ---------- Previous update was at 03:40 AM ----------

can u plz provide me the command for


day is todays date but time is fixed that is 8:00:00 ... after that i want to convert this into epoch.



Eg: $ date -d "TodaysDate 08:00:00" +%s

it means date -d "08 Mar 2012 08:00:00" +%s ---->1331193600
# 4  
Old 03-08-2012
You're almost there:
Code:
date -d "today 08:00:00" +%s

This User Gave Thanks to balajesuri For This Post:
Login or Register to Ask a Question

Previous Thread | Next Thread

9 More Discussions You Might Find Interesting

1. UNIX for Dummies Questions & Answers

Convert Epoch to timestamp in a file

Hi Team, Could you please let me know ,how to convert Epoch column to timestamp in a flat file. "57894"|"1454247163111"|"""HH""" "57897"|"1454247163111"|"""HH""" "7906"|"1454247163111"|"""ss""" I want second field as timestamp. This thread has been moved from a non-technical forum to... (6 Replies)
Discussion started by: shabeena
6 Replies

2. Programming

Python conversion to epoch time

Hi. I have timestamps that I am trying to convert to epoch time. An example: I am trying to convert this to an epoch timestamp but have one little glitch. I have this: import time date_time = '' pattern = '' epoch = int(time.mktime(time.strptime(date_time, pattern))) print epoch... (1 Reply)
Discussion started by: treesloth
1 Replies

3. Shell Programming and Scripting

Different epoch conversion result for bash and csh users

Hi there I'm using this script to convert command line history with Epoch time stamp to human readable. While it works fine with users with /bin/csh shell, it fails to convert for users with /bin/bash shell. Why is this happening? I even changed and added * and after the # but it still didnt... (2 Replies)
Discussion started by: hedkandi
2 Replies

4. Shell Programming and Scripting

Shell Script for Epoch Time Conversion

Hi there I came across this script online to convert Epoch time to proper date format, but I am receiving the following error Also, I have HISTTIMEFORMAT set in user's .profile so that their history output shows time stamps. Additionally I have changed their .history location to a dedicated... (9 Replies)
Discussion started by: hedkandi
9 Replies

5. Shell Programming and Scripting

Date conversion from Standard/given format to seconds/epoch

I am trying get time difference of two dates in secs. Initially I want to convert a standard date format to epoch for two dates and then subtract the two epoch dates. Example : date -d "2007-09-01 17:30:40" '+%s' But this gives me below error date: illegal option -- d Usage: date OS: AIX... (6 Replies)
Discussion started by: bpaac
6 Replies

6. Shell Programming and Scripting

epoch conversion

I need to convert an epoch time from a file into a standard UTC time and output it in the same format but I'm not sure what's the best approach here's the input file and the bold part is what I need to convert. 1,1,"sys1",60,300000 2,"E:",286511144960 3,1251194521,"E:",0,0... (2 Replies)
Discussion started by: satchy321
2 Replies

7. Shell Programming and Scripting

conversion of different timestamp to standard timestamp

hi i need a scrit to convert one date format to another. for example i have three columns in a file which gets a different format, but lastly i want output with stadard timestamp as "yyyy-mm-dd hh:mm:ss" column1 column2 ... (2 Replies)
Discussion started by: dprakash
2 Replies

8. 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

9. Linux

ESQL/C to Oracle Conversion Tools.

The oracle site has such a tool for several platforms but Linux :mad: Would anyone be able to point me in the direction of an Informix ESQL/C to Pro/C convertor that will run on Linux? Thanks (1 Reply)
Discussion started by: mbb
1 Replies
Login or Register to Ask a Question