in reply to Review of my script
but if you have so many variables with self-explanatory names you can do this:# 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
my ($host, $engine, $user, $password, $port);
|
---|