Re: [Perl-unix-users] parsing files by date within dir

2002-09-12 Thread $Bill Luebkert
Terry Vaughn wrote: > Hello. Can someone fwd me a snibbet of code to identify all files within a >specified unix directory with a specific create date so that only those files are >opened and operated on. Thanks. This can be packed into tighter code (doing most of the work with a grep on read

Re: [Perl-unix-users] parsing files by date within dir

2002-09-12 Thread Anthony E.
find . -type f -ctime 5 finds files in the current directory who's creation time is 5 days ago. see "man find" there is also -atime which is access time, not necessarily changed (ctime). --- Terry Vaughn <[EMAIL PROTECTED]> wrote: > Hello. Can someone fwd me a snibbet of code to > identify all

Re: [Perl-unix-users] parsing files by date within dir

2002-09-12 Thread jimmy
Terry, Take a look at find2perl. -- James Schappet http://www.schappet.com On Thu, 12 Sep 2002, Terry Vaughn wrote: > Hello. Can someone fwd me a snibbet of code to identify all files within a >specified unix directory with a specific create date so that only th