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.
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
|
You mention you want a UNIX shell script. Peter J. Acklam wrote some shell scripts that may help you. Look here:
As you can see, the default date is the current date. Peter's script does not use the |
|||||||||
|
|
The Unix Date command will display in epoch time the command is
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 |
|||||||||
|
|
|||||||||
|
|
|||
|
|
|
Depending on the language you're using it's going to be something simple like
Ironically enough, yesterday was day 40,000 if you use 1/1/1900 as "day zero" like many computer systems use. |
|||