View Single Post

   
  #6 (permalink)  
Old 01-16-2008, 11:34 AM
comp.unix.solaris
 
Posts: n/a
Default Re: List All Files in Directory Within a Range of Date

On Aug 13, 2:12 pm, "lazyboy...@yahoo.com" <lazyboy...@yahoo.com>
wrote:
> Hi,
>
> Is there a way to list all of the files in a directory within a range
> of date or just a specific date? Any helps are appreciated.
>
> TIA,
> -Chris


Hi,

find / \( -name a.out -o -name '*.o' \) -atime +7

for modified time option is - mtime.

Reply With Quote