UNIX timestamp


 
Thread Tools Search this Thread
Top Forums Shell Programming and Scripting UNIX timestamp
# 1  
Old 12-01-2015
UNIX timestamp

Hi ,
I have files in s3 buckect under this directory(unix timestamp).I want to get the files on daily bases based batch date which is current unix date.Any help how to convert my unix date to unixtimestamp and get the files to local system.Any help would be great

Code:
aws s3 ls s3://data/1448928000000/

Thanks,
MR

Last edited by Scrutinizer; 12-03-2015 at 11:11 AM.. Reason: code tags
# 2  
Old 12-02-2015
  1. What format timestamp do you want?
  2. What timezone do you want to use (local time or coordinated universal time [AKA GMT])?
  3. What operating system are you using?
  4. Do you want to use a shell script to convert the number of seconds since the Epoch to the timestamp you want or do you want to use a C program?
  5. If you want to use a shell script, what shell are you using? If it is a Korn shell, is it a 1988 version of the Korn shell or a 1993 version of the Korn shell?
This User Gave Thanks to Don Cragun For This Post:
# 3  
Old 12-03-2015
Hi,
Thanks for your reply ,this is the unix time stamp folder in s3 bucket ,when use my local system timestamp for that convert into unix time stamp it should match with below unix time stamp.I am using mac pro(using bash sell) .I want to use shell script to pull the files on daily basis .please advise

Code:
1448928000000

Thanks,
Mohan

Last edited by Scrutinizer; 12-03-2015 at 11:11 AM..
# 4  
Old 12-03-2015
On OSX try:
Code:
date -uj +%s000 $(date -u +%m%d0000%Y)

# 5  
Old 12-03-2015
Thanks a lot ,its perfectly working .Thanks again
Moderator's Comments:
Mod Comment Dear user,

It is appreciated if you use the "thumb up/thanks" button at the bottom right corner for posts that you find useful.

Kind regards,

The UNIX and Linux Forums

Last edited by Scrutinizer; 12-04-2015 at 02:06 AM..
# 6  
Old 12-16-2015
Hi ,
I am try the below command on linux os ,it throwing error but when using same thing in mac os it working ,please advise

Linux ip-172-31-28-233 4.1.10-17.31.amzn1.x86_64 #1 SMP Sat Oct 24 01:31:37 UTC 2015 x86_64 x86_64 x86_64 GNU/Linux


[hadoop@ip-172-31-28-233 ~]$ date -uj +%s000 $(date -u +%m%d0000%Y)
date: invalid option -- 'j'

Thanks,
Mohan
# 7  
Old 12-16-2015
Yes this command does not work om Linux but on OSX as you indicated in this thread in post #3
Login or Register to Ask a Question

Previous Thread | Next Thread

10 More Discussions You Might Find Interesting

1. Shell Programming and Scripting

AIX : Need to convert UNIX Timestamp to normal timestamp

Hello , I am working on AIX. I have to convert Unix timestamp to normal timestamp. Below is the file. The Unix timestamp will always be preceded by EFFECTIVE_TIME as first field as shown and there could be multiple EFFECTIVE_TIME in the file : 3.txt Contents of... (6 Replies)
Discussion started by: rahul2662
6 Replies

2. Shell Programming and Scripting

Check if a string is a valid timestamp in UNIX.

Hi all, I have date and time value in a string, I want to check if it is a valid date and time. Need help on this. Thanks (7 Replies)
Discussion started by: Pratiksha Mehra
7 Replies

3. Shell Programming and Scripting

TimeStamp to unix time

Hi, is there a way to get unix time from timestamp using date function in unix/ OS: SunOS 5.10 input : 2012-07-26 15:00:00 output: 1343314800Thanks in advance (6 Replies)
Discussion started by: sol_nov
6 Replies

4. UNIX for Dummies Questions & Answers

Unix timestamp to readable date

How would I convert a unix timestamp such as "1232144092" to a readable date such as "1/16/2009 10:14:28 PM" ? I thought I could use date, but I don't think so now.. Any help would be great!! (4 Replies)
Discussion started by: Rhije
4 Replies

5. UNIX for Advanced & Expert Users

AIX/awk date to unix timestamp

Hello, I am inside a awk script on AIX, I am feeding to awk ls -luNR i need to convert ls -u time format "month day h:m/yr" to Unix epoch time, POSIX time, or aka unix timestamp I do not have strftime funk in my awk, and i have to do this fast meaning that I cannot do a system call in the... (1 Reply)
Discussion started by: nullwhat
1 Replies

6. AIX

unix timestamp

hi, i have heard that date and time stamp are stored somewhere in unix as an interger. suppose May 20 07:05:59 is stored as 12342234 can anyone tell me where to find this integer. (9 Replies)
Discussion started by: ali560045
9 Replies

7. Programming

converting unix timestamp into readable format using c++

hi everyone, im new here and am in desperate need of help. I want to convert my 32 bit unix time stamp ' 45d732f6' into a readable format (Sat, 17 February 2007 16:53:10 UTC) using c++. I have looked around the interent but i just cant make sense of anything. All examples i can find just... (3 Replies)
Discussion started by: uselessprog
3 Replies

8. AIX

get unix timestamp

How can I get the unix timestamp from AIX? (6 Replies)
Discussion started by: psimoes79
6 Replies

9. UNIX for Advanced & Expert Users

FTP from windows to Unix maintaining timestamp

Hi, Is it possible to Ftp the files from Windows to Unix while maintaining their timestamp Gaurav (1 Reply)
Discussion started by: gauravgoel
1 Replies

10. UNIX for Dummies Questions & Answers

display the timestamp of a server UNIX

I can't find the command shell UNIX to display the timestamp of the current date. It's not an option of the commande date. (3 Replies)
Discussion started by: nicolas
3 Replies
Login or Register to Ask a Question