Month=2
Year=2008
nextmonth=`date -d "1 month $Year-$Month-"01"" +%Y-%m-%d`
date -d "-1 day $nextmonth" +%d
#或者将-d "1 month $Year-$Month-"01"" 和 date -d "-1 day $nextmonth" 写在一行命令中
Month=2
Year=2008
date -d "1 month $Year-$Month-"01"" -d "-1 day" +%d
使用cal 计算某个月份的天数:
Month=2
Year=2008
cal $Month $Year | sed -n '3,$p' | xargs | awk '{print $NF}'
计算当月的天数:
date -d '1 month ' -d '1 days ago' +%d
#或者
cal | sed -n '3,$p' | xargs | awk '{print $NF}'
由于Linux对man date -d 参数说的比较模糊,故举例如下:
# -d, --date=STRING display time described by STRING, not `now'
参数-d,计算前一天可以使用:last-day,yesterday或者-1days
sh-3.2# date -d last-day +%Y%m%d
20111130
sh-3.2# date -d yesterday +%Y%m%d
20111130
sh-3.2# date -d -1days +%Y%m%d
20111130
相应的,计算后一天可以使用:next-day,tomorrow,1days
date -d next-day +%Y%m%d
date -d tomorrow +%Y%m%d
date -d 1days +%Y%m%d
其它日期值还有:last-month,next-month,next-year,last-year
下面四种形式是一样的:
date -d -1days +%Y%m%d
date -d -1day +%Y%m%d
date -d '1 day ago' +%Y%m%d
date -d '1 days ago' +%Y%m%d
其它日期分量还有:month,year,hour,minute,second
date -d 1month +%Y%m%d
date -d -2year +%Y%m%d
date -d -2hours +"%Y%m%d %H:%M:%S"
date -d 60minutes +"%Y%m%d %H:%M:%S"
date -d 3600seconds +"%Y%m%d %H:%M:%S"
表示今年的11月11日:
date -d 11nov +%Y%m%d
date -d 'Nov 11' +%Y%m%d
表示2011年12月12日:
date -d 12dec12 +%Y%m%d
date -d 12dec2012 +%Y%m%d
date -d '12 dec 2012' +%Y%m%d
date -d 'dec 12 2012' +%Y%m%d
查看文件的访问时间、修改时间等信息:stat
如: stat interfaces
输出中包括:文件大小、Inode号、权限、访问时间、修改时间等。
关于ls输出中的时间显示问题:默认ls -l输出的时间以locale形式显示文件的修改时间。以指定格式:"%Y-%m-%d %H:%M:%S" 显示文件的上次访问时间:
sybase@centos5 ~]$ ls -l --time=atime --time-style=+"%F %T" interfaces
-rwxr-xr-x 1 sybase sybase 1715 2014-12-09 21:33:41 interfaces
[sybase@centos5 ~]$ stat interfaces
File: `interfaces'
Size: 1715 Blocks: 8 IO Block: 4096 regular file
Device: fd00h/64768d Inode: 21049252 Links: 1
Access: (0755/-rwxr-xr-x) Uid: ( 500/ sybase) Gid: ( 500/ sybase)
Access: 2014-12-09 21:33:41.000000000 +0800
Modify: 2012-06-30 13:13:16.000000000 +0800
Change: 2012-06-30 13:13:16.000000000 +0800
[sybase@centos5 ~]$ ls -l --time-style=full-iso interfaces
-rwxr-xr-x 1 sybase sybase 1715 2012-06-30 13:13:16.000000000 +0800 interfaces
--转自