Prev: Directory creation and file moving by modification dates?
Next: NEWBIE: Why this behavior on ksh for
From: rvaede on 28 Jul 2010 12:34 I am trying use the command "find" to search for files that start with 2009 into all subdirectories.
From: John Kelly on 28 Jul 2010 12:45 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 28 Jul 2010 12:54
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. |