Difference between revisions of "Linux datel"
From John Freier
(Created page with 'Convert long time to date date -r 1381122000') |
|||
Line 1: | Line 1: | ||
Convert long time to date | Convert long time to date | ||
date -r 1381122000 | date -r 1381122000 | ||
+ | |||
+ | output: Mon Oct 7 00:00:00 CDT 2013 | ||
+ | |||
+ | Get the current long time stamp | ||
+ | date '+%s' | ||
+ | |||
+ | output: 1418321034 | ||
+ | |||
+ | |||
+ | Get a date as long timestamp |
Latest revision as of 12:07, 11 December 2014
Convert long time to date
date -r 1381122000 output: Mon Oct 7 00:00:00 CDT 2013
Get the current long time stamp
date '+%s' output: 1418321034
Get a date as long timestamp