0

How to list the files modified on 24th dec in a folder in hp unix.

I have a folder containing huge number of files, I just want to filter files modified on a particular date. Say december 15th..

j0k
  • 22,600
  • 28
  • 79
  • 90
Abdul Kader
  • 5,781
  • 4
  • 22
  • 40
  • Which programming language are you working in? Does it have a way to `opendir`/`readdir` and `stat`? – derobert Jan 12 '12 at 21:35
  • If a file was modified on the date in question, and then again on a later date, do you want it listed? (If so, you are out of luck.) Or are you looking for all files that were last modified on a particular date? The latter is doable, the former is not unless you are using an obscure file system that stores the necessary information. – William Pursell Jan 12 '12 at 23:52

1 Answers1

0

Try this (not sure if what you need):

ll | grep 'Dec 15'
JuanZe
  • 8,007
  • 44
  • 58