自1970年1月1日(00:00:00 UTC/GMT)以来的秒数。它也被称为Unix时间戳(Unix Timestam、Unix epoch、POSIX time、Unix timestamp)是从1970年1月1日(UTC/GMT的午夜)开始所经过的秒数,不考虑闰秒。

UNIX时间戳的0按照ISO 8601规范为:1970-01-01T00:00:00Z 一个小时表示为UNIX时间戳格式为:3600秒;一天表示为UNIX时间戳为86400秒,闰秒不计算。

shell下的时间加减法就是根据时间戳来实现的,时间戳对我们在shell下的操作非常的有用:

比如:计算某天的时间戳,也就是指定的某一个到1970年1月1日以来的秒数:

//从2014-12-05 19:45:44到1970-1-1总共的秒数
[[email protected] shell]# date -d "2014-12-05 19:45:44" +%s
1417779944

//如果知道某个时间戳,也可以计算出这个时间戳对应的时间日期
[[email protected] shell]# date [email protected]
Fri Dec  5 19:45:44 CST 2014

[[email protected] shell]# date -d @1417779944
Fri Dec  5 19:45:44 CST 2014

 

知道这些之后那我们就可以计算某一天距离今天过了多少天了:

#!/bin/bash
#
first_stamp=`date -d "2014-12-05 19:45:44" +%s` #计算指定日期的时间戳
today_stamp=`date +%s`                          #计算当天的时间戳
let day_stamp=($today_stamp - $first_stamp)     #当天的时间戳减去指定的时间戳
let day=($day_stamp/86400)                      #相差的时间戳除以一天的秒数就得到天数
echo $day

 

以下还有一些时间的计算方法:

[[email protected] shell]# echo $(date --date=‘3 day‘)  //当天日期+3天
Fri Jan 16 11:55:02 CST 2015
[[email protected] shell]# 
[[email protected] shell]# echo $(date --date=‘3 day ago‘)  //当天日期-3天
Sat Jan 10 11:55:10 CST 2015
[[email protected] shell]# 
[[email protected] shell]# echo $(date --date=‘3 month‘)  //当天日期+3月
Mon Apr 13 11:55:17 CST 2015
[[email protected] shell]# 
[[email protected] shell]# echo $(date --date=‘3 month ago‘)  //当天日期-3朋
Mon Oct 13 11:55:25 CST 2014
[[email protected] shell]# 
[[email protected] shell]# echo $(date --date=‘3 year‘)  //当天日期+3年
Sat Jan 13 11:55:32 CST 2018
[[email protected] shell]# 
[[email protected] shell]# echo $(date --date=‘3 year ago‘)  //当天日期-3年
Fri Jan 13 11:55:38 CST 2012
[[email protected] shell]#
[[email protected] shell]# echo $(date --date=‘3 minute ‘)  //当天日期+3秒
Tue Jan 13 11:58:44 CST 2015
[[email protected] shell]# 
[[email protected] shell]# echo $(date --date=‘3 minute ago‘)  //当天日期-3秒
Tue Jan 13 11:52:52 CST 2015
[[email protected] shell]# 
[[email protected] shell]# echo $(date --date=‘3 hour ago‘)  //当天日期-3小时
Tue Jan 13 08:56:00 CST 2015
[[email protected] shell]# 
[[email protected] shell]# echo $(date --date=‘3 hour‘)  //当天日期+3小时
Tue Jan 13 14:56:06 CST 2015
[[email protected] shell]#

转自:http://blog.51cto.com/tanxw/1602915