1. 程式人生 > >linux中find查詢指定時間段的檔案並grep查詢內容

linux中find查詢指定時間段的檔案並grep查詢內容

find . -type f -newermt '2016-01-01 00:00:00' ! -newermt '2016-02-01 12:00:00' -exec grep aaaa {} \; > tmp.txt

find -newerXY file/time:XY為佔位符,a、B、m、c、t分別代表上次訪問時間、建立時間、上次modify時間、上次索引節點改變時間和絕對時間;find根據Y的值來計算file的某個時間戳,然後根據X的值來做匹配。t不能做X。