Beefy Boxes and Bandwidth Generously Provided by pair Networks
Come for the quick hacks, stay for the epiphanies.
 
PerlMonks  

Re: Review of my script

by fisher (Priest)
on May 15, 2013 at 08:53 UTC ( [id://1033641]=note: print w/replies, xml ) Need Help??


in reply to Review of my script

Your list of variables. Each variable on it's own line, like you did, IMHO make sense only when you documenting it,
# Variables my $host; # hostname to connect to my $engine; # can be 'foo' or 'bar' my $user; # username for authorization my $password; # password for auth my $port; # tcp port to connect
but if you have so many variables with self-explanatory names you can do this:
my ($host, $engine, $user, $password, $port);

Log In?
Username:
Password:

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

How do I use this?Last hourOther CB clients
Other Users?
Others pondering the Monastery: (4)
As of 2024-04-26 00:01 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found