Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

How to get the current date value in epoch i.e., number of days elapsed since 1970-1-1. I need solution in unix shell script.

share|improve this question
That depends on the language. Which language do you use? – Stephan202 Jul 7 '09 at 19:26
What language or technology are you using? – Thomas Owens Jul 7 '09 at 19:26
I'm using unix. I need this to use inside a shell script... – Krishna Jul 7 '09 at 19:29
Today 14,432 days have passed since the epoch. ;) timeanddate.com/date/… – Stephan202 Jul 7 '09 at 19:29
Are you sure you want the number of days since epoch? The answers so far give you seconds :) you'll need to divide that by 60 * 60 * 24 to get your answer :) – Jeremy Smyth Jul 7 '09 at 19:29
show 4 more comments

5 Answers

up vote 1 down vote accepted

You mention you want a UNIX shell script. Peter J. Acklam wrote some shell scripts that may help you. Look here:

$ ./gymd2uday.sh
14432

$ echo $(( $(./gymd2uday.sh 1985 02 20) - $(./gymd2uday.sh 1970 1 1) )) 
5529

As you can see, the default date is the current date. Peter's script does not use the %s format specifier, so it may work for you.

share|improve this answer
It works... thanks a lot. – Krishna Jul 7 '09 at 20:29
You're welcome :) – Stephan202 Jul 7 '09 at 20:41
   
FYI: links are broken – Soren Oct 29 '12 at 18:44

The Unix Date command will display in epoch time

the command is

date +"%s"

http://unixhelp.ed.ac.uk/CGI/man-cgi?date

Edit: Some people have observed you asked for days, so it's the result of that command divided by 86,400

share|improve this answer
3  
Note that %s is an extension. POSIX date does not have %s. See pubs.opengroup.org/onlinepubs/9699919799/utilities/date.html for details. – Jens Sep 1 '11 at 8:04
   
Not all days have 86400 seconds (DST, leap seconds, etc...) – Catfish_Man Jan 23 at 8:19
echo $(($(date +%s) / 60 / 60 / 24))
share|improve this answer
+1 Should work on most bourne shells and unixes – nos Jul 7 '09 at 19:52
2  
Note that %s is an extension. POSIX date does not have %s. See pubs.opengroup.org/onlinepubs/9699919799/utilities/date.html for details. – Jens Sep 1 '11 at 8:05
Not all days have 86400 (60*60*24) seconds (DST, leap seconds, etc...) – Catfish_Man Jan 23 at 8:19
echo `date +%s`/86400 | bc
share|improve this answer
Not all days have 86400 seconds (DST, leap seconds, etc...) – Catfish_Man Jan 23 at 8:20

Depending on the language you're using it's going to be something simple like

CInt(CDate("1970-1-1") - CDate(Today()))

Ironically enough, yesterday was day 40,000 if you use 1/1/1900 as "day zero" like many computer systems use.

share|improve this answer
That looks like VB to me. The question asks in relation to a Unix shell script. – Noldorin Jul 7 '09 at 19:32
He edited it after I answered. Thanks for your input anyway. – mandroid Jul 7 '09 at 20:01

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.