STRING可谓变化多样,支持很多种日期时间的描述方式。下面列举一些常用的日期表示方式,希望能够举一反三。
指定日期:
date -d YYYY-mm-dd
指定时间,日期是今天:
date -d HH:MM:SS
指定日期时间:
date -d "YYYY-mm-dd HH:MM:SS"
指定1970年以来的秒数:
date -d '1970-01-01 1251734400 sec utc' (2009年 09月 01日 星期二 00:00:00 CST)
date -d '1970-01-01 1314177812 sec utc' (2011年 08月 24日 星期三 17:23:32 CST)
今天:
date
date -d today
date -d now
明天:
date -d tomorrow
date -d next-day
date -d next-days
date -d "next day"
date -d "next days"
date -d "+1 day"
date -d "+1 days"
date -d "1 day"
date -d "1 days"
date -d "-1 day ago"
date -d "-1 days ago"
昨天:
date -d yesterday
date -d last-day
date -d last-days
date -d "last day"
date -d "last days"
date -d "-1 day"
date -d "-1 days"
date -d "1 day ago"
date -d "1 days ago"
前天:
date -d "2 day ago"
date -d "2 days ago"
date -d "-2 day"
date -d "-2 days"
大前天:
date -d "3 day ago"
date -d "3 days ago"
date -d "-3 day"
date -d "-3 days"
上周,一周前:
date -d "1 week ago"
date -d "1 weeks ago"
上个星期五(不是上周五):
date -d "last-friday"
date -d "last friday"
上月,一月前:
date -d last-month
date -d last-months
date -d "-1 month"
date -d "-1 months"
下月,一月后:
date -d next-month
date -d next-months
date -d "+1 month"
date -d "+1 months"
去年,一年前:
date -d last-year
date -d last-years
date -d "-1 year"
date -d "-1 years"
明年,一年后:
date -d next-year
date -d next-years
date -d "+1 year"
date -d "+1 years"
一小时前:
date -d "last-hour"
date -d "last-hours"
date -d "1 hour ago"
date -d "1 hours ago"
一小时后:
date -d "1 hour"
date -d "1 hours"
一分钟前:
date -d "1 minute ago"
date -d "1 minutes ago"
一分钟后:
date -d "1 minute"
date -d "1 minutes"
一秒前:
date -d "1 second ago"
date -d "1 seconds ago"
一秒后:
date -d "1 second"
date -d "1 seconds"
#!/bin/sh
# 母亲节(每年5月的第二个星期日 )
# usage: mother_day [year]
mother_day()
{
local may1 # 5月1日
if [ "$1" ]; then
may1=$1-05-01 # 也可以是是$1/05/01
else
may1=5/1 # 也可以是05/01,但不能是05-01
fi
#date -d $may1
# 看5月1日是星期几
local w=$(date +%w -d $may1) # %w 0=星期天 1-6=星期一到六
#echo $w
if [ $w -eq 0 ]; then # 如果是5月1日星期天,就跳过一个星期
date +%F -d "$may1 +1 week"
else # 如果5月1日不是星期天,就跳过两个星期,再减去w天
date +%F -d "$may1 +2 week -$w day"
fi
}
# 父亲节(每年6月的第三个星期日)
# usage: father_day [year]
father_day()
{
local june1 # 保存6月1日的日期
if [ "$1" ]; then
june1=$1-06-01
else
june1=6/1
fi
# 因为采用1-7表示星期几,简化了计算逻辑
local w=$(date +%u -d $june1) # %u 7=星期天,1-6=星期一到六
date +%F -d "$june1 +3 week -$w day"
}
# usage: ./calc_date.sh [year]
if [ "$1" ]; then
echo Mother Day of year $1 is $(mother_day "$1")
echo Father Day of year $1 is $(father_day "$1")
else
echo Mother Day of this year is $(mother_day)
echo Father Day of this year is $(father_day)
fi
运行结果如下:
复制代码 代码如下:
[root@node56 ~]# ./calc_date.sh
Mother Day of this year is 2011-05-08
Father Day of this year is 2011-06-19
[root@node56 ~]# ./calc_date.sh 2011
Mother Day of year 2011 is 2011-05-08
Father Day of year 2011 is 2011-06-19
[root@node56 ~]# ./calc_date.sh 2010
Mother Day of year 2010 is 2010-05-09
Father Day of year 2010 is 2010-06-20
[root@node56 ~]# ./calc_date.sh 2009
Mother Day of year 2009 is 2009-05-10
Father Day of year 2009 is 2009-06-21
[root@node56 ~]# ./calc_date.sh 2008
Mother Day of year 2008 is 2008-05-11
Father Day of year 2008 is 2008-06-15
[root@node56 ~]# ./calc_date.sh 2007
Mother Day of year 2007 is 2007-05-13
Father Day of year 2007 is 2007-06-17
[root@node56 ~]# ./calc_date.sh 2006
Mother Day of year 2006 is 2006-05-14
Father Day of year 2006 is 2006-06-18
[root@node56 ~]# ./calc_date.sh 2005
Mother Day of year 2005 is 2005-05-08
Father Day of year 2005 is 2005-06-19
[root@node56 ~]# ./calc_date.sh 2012
Mother Day of year 2012 is 2012-05-13
Father Day of year 2012 is 2012-06-17