当前位置: 技术问答>linux和unix
linux有什么命令能把时间戳转换成时间字符串?
来源: 互联网 发布时间:2016-07-01
本文导语: 如 1252400014 转换为 2009-09-08 16:53:36 后边的时间格式无所谓,只要是human readable就可以了! | http://www.linuxsir.org/bbs/showthread.php?threadid=27721 | 直接看代码: $ date -d '1970-01-01 UTC 1252400014...
如 1252400014 转换为 2009-09-08 16:53:36
后边的时间格式无所谓,只要是human readable就可以了!
后边的时间格式无所谓,只要是human readable就可以了!
|
|
直接看代码:
$ date -d '1970-01-01 UTC 1252400014 seconds' +"%Y-%m-%d %T"
2009-09-08 16:53:34