计算出2008年 09月 04日 星期四 00:00:00 UTC距1970年1月1日的天数。
[root@localhost test]# echo $(($(date --date="2008/09/04" +%s)/86400 +1))
14126
由距1970年1月1日得天数计算出日期
(1)[root@localhost test]# date -u -d "1970-01-01 UTC $((14126 * 86400 )) seconds"
2008年 09月 04日 星期四 00:00:00 UTC
(2)
#!/bin/bash
#在脚本运行的后面输入秒
date -d '1970-01-01 UTC '$1' seconds' +"%Y-%m-%d %T %z"
阅读(2696) | 评论(0) | 转发(1) |