I'm trying to find files that have dates within a specific time range (like the last 2 months).

How do I go about doing that?

link|improve this question

62% accept rate
feedback

1 Answer

up vote 5 down vote accepted

The find command has an -ls argument, which would provide the functionality you desire:

find /path -mtime -60 -ls

Good luck.

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.