Linux / UNIX: Convert Epoch Seconds To the Current Time

How do I convert Epoch seconds to the current time under UNIX or Linux operating systems?

Unix time, or POSIX time, is a system for describing points in time, defined as the number of seconds elapsed since midnight proleptic Coordinated Universal Time (UTC) of January 1, 1970, not counting leap seconds.

 

 

 

Print Current UNIX Time

Type the following command to display the seconds since the epoch:

date +%s

Sample outputs:
1268727836

Convert Epoch To Current Time

Type the command:

date -d @Epoch
date -d @1268727836
date -d "1970-01-01 1268727836 sec GMT"

Sample outputs:

Tue Mar 16 13:53:56 IST 2010

Please note that @ feature only works with latest version of date (GNU coreutils v5.3.0+). To convert number of seconds back to a more readable form, use a command like this:

date -d @1268727836 +"%d-%m-%Y %T %z"

Sample outputs:

16-03-2010 13:53:56 +0530
WARNING! Note that the date and awk command syntax may not work on all versions of UNIX. Please refer to your local man page.

AWK Example

echo 1268727836 | awk '{print strftime("%c",$1)}'

Perl Example

perl -e "print scalar(localtime(1268727836))"
2 (1)
Article Rating (1 Votes)
Rate this article
Attachments
There are no attachments for this article.
Comments (1)
Comment By Dave - Sun, Jul 11th, 2021 1:51 AM
This is wrong. Title says "Linux / UNIX: Convert Epoch Seconds To the Current Time" But the examples are not UNIX compliant. They are GNU/Linux (and maybe BSD)
Full Name
Email Address
Security Code Security Code
Related Articles RSS Feed
Epoch & Unix Timestamp Conversion Tools
Viewed 73035 times since Fri, Jun 22, 2018
perl podstawy
Viewed 2397 times since Mon, May 21, 2018
Linux and Unix xargs command tutorial with examples
Viewed 4329 times since Fri, Jun 1, 2018
Linux: Repeat Command N Times – Bash FOR Loop
Viewed 3611 times since Mon, Feb 18, 2019
awk printf
Viewed 16376 times since Wed, Aug 19, 2020
Bash: Read File Line By Line – While Read Line Loop
Viewed 2841 times since Mon, Feb 18, 2019
Transform XML to CSV Format | Unix String Pattern Manipulation The Ugly Way
Viewed 7392 times since Sun, Jan 9, 2022
Utilities to Tidy Up Your Reports
Viewed 16669 times since Wed, May 30, 2018
Convert a human readable date to epoch with a shell script on OpenBSD and Mac OS X
Viewed 15790 times since Fri, May 25, 2018
Dealing with Funny Files
Viewed 3251 times since Wed, May 30, 2018