Pages

Wednesday, May 1, 2013

Find files by modification date, within a modified by date range on Linux

Find files modified within a date range


Use these commands

touch --date "2013-04-29" /tmp/start
touch --date "2013-05-1" /tmp/end
find -type f -newer /tmp/start -not -newer /tmp/end

No comments:

Post a Comment