Chinaunix首页 | 论坛 | 博客
  • 博客访问: 2343345
  • 博文数量: 276
  • 博客积分: 5998
  • 博客等级: 大校
  • 技术积分: 5175
  • 用 户 组: 普通用户
  • 注册时间: 2010-12-24 14:43
文章分类

全部博文(276)

文章存档

2014年(25)

2013年(11)

2012年(69)

2011年(167)

2010年(4)

分类: LINUX

2011-04-14 21:48:27

计算出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) |
0

上一篇:shell 笔记

下一篇:应对synflood 攻击的方法

给主人留下些什么吧!~~