find 是 Unix/Linux 中好用的尋找檔案指令,本篇介紹如何使用 find 找出指定日期區間內的檔案。
使用 touch 建立一個修改日期為 2013-01-01 的檔案
代碼: 選擇全部
touch --date "2013-01-01" /tmp/start
代碼: 選擇全部
touch --date "2013-12-31" /tmp/end
代碼: 選擇全部
find /MDDATA/photo -type f -newer /tmp/start -not -newer /tmp/end