Re: add timer to program

2005-10-15 Thread Jay Savage
On 10/15/05, zentara <[EMAIL PROTECTED]> wrote: > On Sat, 15 Oct 2005 08:56:36 +0700, [EMAIL PROTECTED] (Beast) wrote: > > > > >Hello, > > > >My perl script requires to invoke external program, however this > >external program sometimes take forever to complete. The external > >program accessing /d

Re: LLama and camels books

2005-10-15 Thread Randal L. Schwartz
> "Dion" == Dion Markus <[EMAIL PROTECTED]> writes: Dion> Hi all I am totaly new to Perl and programming. Then the Llama book is not for you. You apparently skipped over the preface where we say that. -- Randal L. Schwartz - Stonehenge Consulting Services, Inc. - +1 503 777 0095 http://ww

Re: Sending HTML file as mail from mail command (mail -s )

2005-10-15 Thread Randal L. Schwartz
> "Mazhar" == Mazhar <[EMAIL PROTECTED]> writes: Mazhar> This above is working fine i need help for sending the same Mazhar> textfile as a HTML file as the body of the mail please help me. I presume these users have explicitly opt'ed *in* for HTML email. If you sent HTML as the only pay

RE: I need help here

2005-10-15 Thread Sreedhar reddy
Hi Charles, This is the code which I have written to finish my small task... $inputfile= shift; $outputfile = shift; open(FILE1,"<$inputfile"); @lines=; close(FILE1); open(FILE2,">$outputfile"); foreach $line (@lines) { if($line =~ m/(\d+) ([a-z,A-Z,_,0-

RE: I need help here

2005-10-15 Thread Charles K. Clarkson
Sreedhar reddy wrote: : Charles <> wrote: : : A working perl script should not be your only concern : : when just learning the language. It is equally, no, more : : important that you learn how to write your code well. Show : : us your entire working script. I think