Beefy Boxes and Bandwidth Generously Provided by pair Networks
Just another Perl shrine
 
PerlMonks  

Re: Perl script parameters

by kennethk (Abbot)
on Oct 16, 2012 at 14:50 UTC ( [id://999347]=note: print w/replies, xml ) Need Help??


in reply to Perl script parameters

When I need to pass parameters, I use the CORE module Getopt::Long. The docs are pretty complete, and include type checking on input.

Re: Log file, you could either feed it in on STDIN or pass the file name as a parameter and explicitly open (open my $fh, '<', $log or die "Open fail: $!";) and read (my @Build_Log_Array = <$fh>;) it. Both work, and which I use depends on the particulars of my need.


#11929 First ask yourself `How would I do this without a computer?' Then have the computer do it the same way.

Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Node Status?
node history
Node Type: note [id://999347]
help
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others lurking in the Monastery: (4)
As of 2024-03-29 09:31 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found