http://qs321.pair.com?node_id=1033641


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);