1. 按照时间查询文件
先touch 两个时间标记文件
touch -t 07120800 start ##### 07120800 代表的意思(月,日,时,分)
touch -t 07121200 end
然后
find /share/path -type f -newer starttime -a ! -newerendtime -exec ls -l {} \;
2. 查找某个时间段内修改过的文件
find /share/path -mtime +20 -a -mtime -50 -type f ####20-50天内修改过的文件