Re: stumped on error...

2002-09-06 Thread drieux
On Friday, Sep 6, 2002, at 08:58 US/Pacific, Mike Singleton wrote: > Sorry for showing my ignorance, but what is and how would I use 'see > inline'... thanks! phase 0: perldoc Inline::Files phase 1: http://search.cpan.org/search?mode=all&query=Inline ciao drieux --- -- To unsub

Re: stumped on error...

2002-09-06 Thread Mike Singleton
topt that way do > this: > see inline > > > > -Original Message- > > From: Mike Singleton [mailto:[EMAIL PROTECTED]] > > Sent: Friday, September 06, 2002 11:17 AM > > To: [EMAIL PROTECTED] > > Subject: stumped on error... > > > > > > Name

Re: stumped on error...

2002-09-06 Thread Jeff 'japhy' Pinyan
On Sep 6, Mike Singleton said: >Name "Getopt::Std::opt_h" used only once: possible typo. What makes you think that's an error? It's a WARNING, and won't affect the way your program runs. As the perldiag docs tell you, that warning means that Perl saw you use that variable name only once, which

RE: stumped on error...

2002-09-06 Thread Nikola Janceski
instead of accessing the $opt_h from the namespace of Getopt that way do this: see inline > -Original Message- > From: Mike Singleton [mailto:[EMAIL PROTECTED]] > Sent: Friday, September 06, 2002 11:17 AM > To: [EMAIL PROTECTED] > Subject: stumped on error... > >

stumped on error...

2002-09-06 Thread Mike Singleton
Name "Getopt::Std::opt_h" used only once: possible typo. === Partial Script == use strict; use English; use Getopt::Std; use Cwd; my $RPTFILE="jobrpt.tmp"; getopts('hn:p:o:s:') or die ; ($Getopt::Std::opt_h) and die; -- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mai