-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
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
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
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
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 ($
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
Thanks Paul!
"Gowers, Paul
(CRTLDN)"