How can I list files within specific time range:

  1. Files those modification date isn't greater than 5 hours.
  2. Files that fall into period like 10-th of December through 20-th of December.
link|improve this question

57% accept rate
feedback

1 Answer

up vote 3 down vote accepted
find /YOUR/SEARCH/DIR -type f -mmin -300 2> /dev/null

Finds every file for your first criteria.

For the second:

touch -d "2011-12-10" 2012-12-10
touch -d "2011-12-21" 2012-12-21
find /YOUR/SEARCH/DIR -type f -anewer 2012-12-10 ! -anewer 2012-12-21 2> /dev/null

It first creates two reference files based on your date criterias, then search by using them.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.