From: rvaede on
I am trying use the command "find" to search for files that start with
2009 into all subdirectories.
From: John Kelly on
On Wed, 28 Jul 2010 09:34:48 -0700 (PDT), rvaede <rvaedex23(a)gmail.com>
wrote:

>I am trying use the command "find" to search for files that start with
>2009 into all subdirectories.

find . -type f -name '2009*'



--
Web mail, POP3, and SMTP
http://www.beewyz.com/freeaccounts.php

From: rvaede on
On Jul 28, 12:45 pm, John Kelly <j...(a)isp2dial.com> wrote:
> On Wed, 28 Jul 2010 09:34:48 -0700 (PDT), rvaede <rvaede...(a)gmail.com>
> wrote:
>
> >I am trying use the command "find" to search for files that start with
> >2009 into all subdirectories.
>
> find . -type f -name '2009*'
>
> --
> Web mail, POP3, and SMTPhttp://www.beewyz.com/freeaccounts.php

Thank you so much.