RE: Good Intro reading

2005-09-26 Thread Charles K. Clarkson
Dave Adams wrote: I urge all readers *not* to use this site. Just don't visit it. I won't even quote the url. If you want to learn about perl and CGI visit Ovid's course at http://users.easystreet.com/ovid/cgi_course/index.html. : Being a junior perl programmer, I

Good Intro reading

2005-09-26 Thread Dave Adams
Being a junior perl programmer, I read a lot of docs and I came across a really good site that is well written and structured. If you are just starting out, I would highly recommend it. http://www.wdvl.com/Authoring/Languages/Perl/PerlfortheWeb/toc.html My compliments to Aaron Weiss, the author.

RE: Camel book relevance

2005-09-26 Thread Gomez, Juan
Thanks for the info I for now on only Perl :o) Armando Gomez Guajardo Process Engineer Work Ph 956 547 6438 Beeper956 768 4070 -Original Message- From: Wiggins d'Anconia [mailto:[EMAIL PROTECTED] Sent: Monday, September 26, 2005 1:15 AM To: Gomez, Juan Cc: Gonzillaaa; beg

Re: Camel book relevance

2005-09-26 Thread Gonzillaaa
Wiggins, thanks for the recomendation I though I give online resources a try first and then get a book I could use on the long term. It was the evolution of the language and the relevance of the book that I was more curious about... thanks again. On 2005-09-26 07:12:42 +0100, "Wiggins d'Ancon

Re: the time a program runs

2005-09-26 Thread Dan Klose
On Mon, 2005-09-26 at 06:32 -0400, Tom Allison wrote: > Octavian Rasnita wrote: > > Hi, > > > > I have tried to find out the time a perl program runs, and I have used: > > > > #at the start of the program: > > my $begin = (times)[0]; > > my $begin_t = time(); > > > > ... The program follows > >

Re: the time a program runs

2005-09-26 Thread Tom Allison
Octavian Rasnita wrote: Hi, I have tried to find out the time a perl program runs, and I have used: #at the start of the program: my $begin = (times)[0]; my $begin_t = time(); ... The program follows # at the end of the program: my $end = (times)[0] - $begin; my $end_t = time() - $begin_t; pr

Re: Need a list of files in a dir.

2005-09-26 Thread Tom Allison
Wiggins d'Anconia wrote: Please bottom post... Daniel Kurtz wrote: Ooh ooh ooh! One I know! open(COMMAND, "dir |"); @files = ; Well, there's two methods that I use where I can and they are probably more portable. glob works well most of the time: @files = ; But it has problems with la

Re: Error message >The process tried to write to a nonexistent pipe.

2005-09-26 Thread Jeff Peng
u are wrong here: @Output = `cmd` ; it should be: @Output = `$cmd` ; 2005/9/26, Nath, Alok (STSD) <[EMAIL PROTECTED]>: > Hi, >Any idea why I am getting this error message ? > >C:\tmp\Scripts>The process tried to write to a nonexistent pipe. >The process tried to write

Error message >The process tried to write to a nonexistent pipe.

2005-09-26 Thread Nath, Alok (STSD)
Hi, Any idea why I am getting this error message ? C:\tmp\Scripts>The process tried to write to a nonexistent pipe. The process tried to write to a nonexistent pipe. The process tried to write to a nonexistent pipe. I am trying to run a dir command in the