linux下查找特定时间段内生成的文件

如下,查找9点到11点生成的文件,不包括9和11,即查找10点生成的文件

方法1:

ls -l 20120816bak|awk '{split($7,hour,":");if(hour[1]>9 &&hour[1]<11) print}'
方法2:先touch 2个时间段的时间标记
touch -t 08160900 starttime
touch -t 08161100 endtime

然后

find ./20120816bak -type f -newer starttime -a ! -newer endtime -exec ls -l {} \;

方法3:如果文件名含有时间点,则可采用字符集合或者括号扩展
比如查询10点到23点所有的文件

ls  -l   GSC_ZX_14[0-3]_20120816[1-2][0-9]* 


查询 12点到22点的所有文件
ls  -l   GSC_ZX_14[0-3]_20120816{12,13,14,15,16,17,18,19,20,21,22}*



 

你可能感兴趣的:(linux)