1. 程式人生 > >Linux 根據時間段或檔名查詢檔案

Linux 根據時間段或檔名查詢檔案

查詢8月份所有csv檔案

find -name *.csv \( -newermt '2018-08-01 00:00' -a -not -newermt '2018-08-31 23:00' \)

查詢8月份所有檔案

find -type -f \( -newermt '2018-08-01 00:00' -a -not -newermt '2018-08-31 23:00' \)

查詢檔名包含aa的檔案

find /usr/local/rratchet/apache-tomcat-7.0.68-zy/webapps/sdec-data/task/ -name *aa*