On Fri, Mar 13, 2009 at 12:21 PM, Michael ODonnell <
michael.odonn...@comcast.net> wrote:

>
>
> >> find . -mtime 60
> >
> >Doesn't mtime's arg mean that many days ago?  So you're asking find
> >to mention files 60 days old, I think.   Is that what you intended?
>
> I actually should have said, "So you're asking find to mention files
> last modified 60 days ago"
>

And I don't think it will find files modified 59 days or 61 days ago.

find . -mtime +60 would find files > 60 days
find . -mtime -60 is <60 days.

FWIW, GNU find and Solaris find don't need a -print
_______________________________________________
gnhlug-discuss mailing list
gnhlug-discuss@mail.gnhlug.org
http://mail.gnhlug.org/mailman/listinfo/gnhlug-discuss/

Reply via email to