Re: determining whether Net::FTP module present: version 5.005_03on Solaris

2002-07-25 Thread McDonald Patrick
Net::FTP is not present in the version of Perl you reference. You will have to obtain Net::FTP from CPAN. The package comes with install instructions located in the file "INSTALL". If I remember correctly it should be the standard: perl Makefile.pl make make install I a

Re: multiple quotes

2002-02-07 Thread McDonald Patrick
you need to escape your inner quotes with a backslash like so. print "\n"; Pat - Original Message - From: "Mike Smith" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Thursday, February 07, 2002 2:01 PM Subject: multiple quotes > How do I get this to work? (too many quotes) > > print

RE: simple file question

2002-01-29 Thread McDonald Patrick
Write your print statement like this if /$email2/o { print FILE2; } -Original Message- From: Chris Zampese [mailto:[EMAIL PROTECTED]] Sent: Tuesday, January 29, 2002 9:18 PM To: perl list Subject: Re: simple file question Just found a regex in the docs. I now have this... while

RE: Question on PERL coding style...

2002-01-29 Thread McDonald Patrick
Perl will only execute subroutines when called. It is recommended that you group all subroutine defintions either at the beginning or the end of the program. Pat -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]] Sent: Tuesday, January 29, 2002 1:38 PM To: [EMAIL PROT