1、在linux bash下北京时间与unix时间戳互转:
获取unix timestamp:
- 命令:date "+%s"
- 输出:1372654714
获取北京时间:
- 命令:date '+%Y-%m-%d %H:%M:%S'
- 输出:2013-07-01 12:55:56
unix timestamp转北京时间:
- 命令:date -d@1372654714 '+%Y-%m-%d %H:%M:%S'
- 输出:2013-07-01 12:58:34
北京时间转unix timestamp:
- 命令:date -d"2013-07-01 12:58:34" '+%s'
- 输出:1372654714
posted @
2015-09-19 15:38
穆穆兔兔
阅读(
1689)
评论()
编辑
收藏
举报