On Thu, May 31, 2001 at 09:05:55AM -0400, Swappan Das wrote:
> Please help  and advice me the steps to learn Perl programming quickly.
> I just bought the book "Learning Perl" by Randal L. Schwartz & Tom
> Christiansen. 
> 
> I am learning Perl on AIX  platform and  I have Perl 5.0.3.  I did not
> install Perl, I found that one of my software vendor installed the Perl.
> I was trying to run one program and I got the error as follows:
> 
> Can't locate Getopt/Std.pm in @INC at test.pod line 10.
> BEGIN failed--compilation aborted at test.pod line 10.

If you do a 'perl -V' on the command line, you can find out
what the default contents of @INC are.  If Getopt::Std isn't
in there, you need to tell Perl to look elsewhere; this can
be done with a "use lib" statement.  There are other ways too.

> I thought that Getopt::Std and File::Find Modules are standard module.

Yeah, me too.

-- 
If you don't look at the fnord, it can't get you.

Reply via email to