(no subject)

2002-04-29 Thread 王瘢雹 偉
-Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]] Sent: Tuesday, April 30, 2002 1:33 PM To: 王 偉 Subject: Welcome to the "ActivePerl" mailing list Welcome to the [EMAIL PROTECTED] mailing list! To post to this list, send your email to: [EMAIL PROTECT

RE: Want help for FTP using Perl

2002-04-29 Thread Sengupta, Rajib ¥(CC-Contractor¥)
Thanks to all of you I am able to create my first serious perl script.. now i want to finetune my program.. As I told you I am ftping a file from one Unix server to another server..here is my code: use strict; use Net::FTP; my (@allfiles,$h_ftp, $n,@fArr,$file,$onlyFile,$onlyExt,@confirmationFil

RE: Web Hosting

2002-04-29 Thread ALincoln
Yup, that was it... thx, Adym Lincoln Edgewater Technology, Inc. Phone: (603) 644-2445, 7261 Fax: (603) 669-8330 Nothing great was ever achieved without enthusiasm. - Ralph Waldo Emerson > -Original Message- > From: Paul O'Russa [mailto:[EMAIL PROTECTED]] > Sent: Monday, April 29, 200

Re: Web Hosting

2002-04-29 Thread Trevor Joerges
Might be a typo in your use statement. The module name is "Getopt::Std" and not "GetOpt::Std" with a capital "O". You might want to try setting the "-w" switch at the beginning of your script to help pick up possible typoes like this. "#!/usr/bin/perl -w" Hope this helps. Kind regards, Trevor J

RE: Pattern matching null strings

2002-04-29 Thread Joe Rioux
It's an interactive application so speed during a prompt for data is virtually a non-issue. And if the first one works why the desire for a different solution? What does the 2nd give you over the 1st? > print "Please enter the string: "; > $Response = ; > chomp $Response; > if ($

Re: Web Hosting

2002-04-29 Thread Paul O'Russa
Try this instead: use Getopt::Std; Note the lowercase 'o' in 'Getopt'. I tried it with an uppercase and I got the same error. Lowercase is no problem. It seems this is case sensitive. Paul O. - Original Message - From: <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Monday, A

RE: Pattern matching null strings

2002-04-29 Thread Philip Morley
Thanks Paul! "Gowers, Paul (CRTLDN)"