-2

i.e.

List any files between 2014-01-25 1300 - 2014-01-25 2000 in

Cheers

user3236169
  • 145
  • 1
  • 3
  • 13
  • 3
    This question appears to be off-topic because it's Unix related and should better be asked on http://unix.stackexchange.com/. – TLama Jan 25 '14 at 21:22

2 Answers2

1

You can use the find command with multiple selectors - e.g. find . -mtime +1 -mtime -3. It can be used with ctime, atime, etc., as well.

mti2935
  • 11,465
  • 3
  • 29
  • 33
0

Assuming you have a GNU find (which you could compile on SunOS if you don't have it), use the age range options for find

Basile Starynkevitch
  • 223,805
  • 18
  • 296
  • 547