RE: Use of uninitialized value in pattern match (m//)

2005-02-13 Thread Charles K. Clarkson
mark McWilliams wrote: mark McWilliams <[EMAIL PROTECTED]> wrote: : I do not know how to get rid of this error : Use of uninitialized value in pattern match (m//) : : Use of uninitialized value in pattern match (m//) at : ./2new.pl line 97, <> line 22328. : : I have se

Use of uninitialized value in pattern match (m//)

2005-02-13 Thread mark McWilliams
I do not know how to get rid of this error Use of uninitialized value in pattern match (m//) This is were the error is if ( defined $modem{$Ascend_Xmit_Rate} =~ /\d/) { print " __\t modem{Ascend_X_Rate}_\t __\n"; $modem{$Ascend_X

Re: Perl versus Expect(tcl) : Specific Example

2005-02-13 Thread perl perl
Excellent info coming in, so far. If its true that we have to use two versions of Perl Expect.PM (ActiveState) and Perl Expect.PM (Unix)... then wouldn't that pose double script maintenance issues? My Expect(tcl) script is simplified and centralized to one file. Its capable of switching back a

Re: Perl versus Expect(tcl) : Specific Example

2005-02-13 Thread Scott Pham
Perl Expect on Windows CON: Expect perl module can't be used on a Windows platform. Looks like your best bet is to use activestate TCL if it's on windows. On Sat, 12 Feb 2005 17:27:54 -0800, perl perl <[EMAIL PROTECTED]> wrote: > Hi, I'd like to narrow the previous Expect(tcl) question so that a

Re: Create html pages w/ images and text

2005-02-13 Thread Brian Volk
zentara wrote: On Sat, 12 Feb 2005 12:32:22 -0500, [EMAIL PROTECTED] (Brian Volk) wrote: Hi All, I have two directories, one directory contains 20 text files and the other directory contains 15 jpeg's. I need to create an html page for each text file and insert the image if one exist for that

Re: Accessing https pages

2005-02-13 Thread Jenda Krynicky
From: [EMAIL PROTECTED] Date sent: Sat, 12 Feb 2005 15:23:01 EST Subject:Accessing https pages To: beginners@perl.org > I am very new to Perl - a few days. I am running Windows XP. I > downloaded and installed ActivePerl to c:\pe

Re: Accessing https pages

2005-02-13 Thread Damiannz
Peter, excuse me for my WEB and PC naivety. I have subsequently found what Bob and you meant. I found a web site called http://devcentral.f5.com/Default.aspx?TabID=29&newsType=ArticleView&articleId=12 that gave me the exact instructions what to do so I can now access https pages via windows

Re: Accessing https pages

2005-02-13 Thread Peter Scott
In article <[EMAIL PROTECTED]>, [EMAIL PROTECTED] writes: >thank you for your reply. I went to >http://theoryx5.uwinnipeg.ca/ppms/Crypt-SSLeay.ppd but all it gave me was some text Take a closer look at what Bob actually said: > With ActiveState, you use their "ppm" tool to install modules. You

hash speed

2005-02-13 Thread Ken Gillett
I have a script that creates a hash, up to several thousand key=>value pairs. Each value is a string that is created by adding to it repeatedly, maybe hundreds of times, each addition probably about 10 bytes. I can do this in (at least) 2 ways. One is to repeatedly concatenate ( .= ) the addit