Linux 获取日期参数

  • Post author:
  • Post category:linux



Linux上获取各日期参数



1、当前日期

sysdate=`date +%Y%m%d` 


2、本月初

first_day=`date -d"${sysdate}" +%Y%m01`


3、上月末

last_mon=`date -d"${first_day} last day" +%Y%m%d`


4、上年末

last_year=`date -d"${sysdate} last year" +%Y1231`


5、上季度末

curr_month=`date -d"${sysdate}" +%_m`
curr_quarter=$((($curr_month-1)%3)) 
next_mon=`date -d "${sysdate} $curr_quarter months ago" +%Y%m01`
last_q=`date -d "${next_mon} last day " +%Y%m%d`


如有特殊需求,获取特殊日期,可以留言讨论。



版权声明:本文为weixin_41634597原创文章,遵循 CC 4.0 BY-SA 版权协议,转载请附上原文出处链接和本声明。