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] regexp: JavaScript extractor

2002-09-12 Thread $Bill Luebkert
Roman @ Melihhov wrote: > In HTML parser how do I match JavaScripts, e.g. HTML code in a form of: > > > > > > Ideas appreciated. You can play with HTML::Parser or try a simple

[Perl-unix-users] Mail::Sender Problem

2002-09-12 Thread Mark Sutfin
I'm using Mail::Sender for attaching .txt files. About a week ago, the users began complaining that some of the dollar amounts in the attachment records had "lost" the decimal point. We're on HP 11i. ( No patches have been applied for several months). Perl 5.6 I can recreate the problem. The orig

[Perl-unix-users] regexp: JavaScript extractor

2002-09-12 Thread Roman @ Melihhov
In HTML parser how do I match JavaScripts, e.g. HTML code in a form of: Ideas appreciated. Roman. ___ Perl-Unix-Users mailing list [EMA

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

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

2002-09-12 Thread Terry Vaughn
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. Terry ___ Perl-Unix-Users mailing list [EMAIL PROTECTED] To

[Perl-unix-users] errors while installing Math::Pari

2002-09-12 Thread prakash rao
Hi All, This is a prerequisite for Net::SSH::Perl and I am getting some dynaloader errors when I run make test. I searched on Google and perl mailing lists but couldn't find any solution. It is a production machine and am trying to install in my local directory. The perl version is 5.6.1 built fo