欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  科技

linux中Shell日期转为时间戳的方法

程序员文章站 2022-07-18 11:27:56
这篇文章主要介绍了linux中Shell日期转为时间戳的方法,需要的朋友可以参考下... 14-07-28...
shell中获取时间戳的方式为:date -d “$currenttime” +%s

$ date -d @1337743485671 "+%c"
sun 28 may 44361 12:41:11 pm cst

如果要将一个日期转为时间戳,方式如下:

1、得到当前时间

currenttime=`date “+%y-%m-%d %h:%m:%s”`

2、将日期转为时间戳

currenttimestamp=`date -d “$currenttime” +%s`
echo $currenttimestamp

3.字符串转换为时间戳可以这样做:

date -d "2010-10-18 00:00:00" +%s

输出形如:

1287331200

其中,-d参数表示显示指定的字符串所表示的时间,+%s表示输出时间戳。

4.而时间戳转换为字符串可以这样做:

date -d @1287331200

输出形如:

mon oct 18 00:00:00 cst 2010