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. |