crackotter,
First and foremost, let me congradulate you on your name. It gives me a distrubing mental impression that I do not want to think to long about
Now that the is over, if there would be one thing that I would do here, it would be to write a 'Print' function. If you need to send everything to STDOUT, then you can lessen your keystrokes by doing something like ...
sub Print{
my $string = shift();
print STDOUT "$string\n";
}
Then you could change all of those instances of...
print STDOUT "Batch Router - the batch router configurator\n";
print STDOUT "\n";
print STDOUT "List of options and their functions:\n";
to
Print "Batch Router - the batch router configurator";
Print(); #Empty line
Print "List of options and their functions:";
This is merely a suggestion.
Kristofer Hoch
Damn it Jim, I'm a doctor not a physician
Posts are HTML formatted. Put <p> </p> tags around your paragraphs. Put <code> </code> tags around your code and data!
Titles consisting of a single word are discouraged, and in most cases are disallowed outright.
Read Where should I post X? if you're not absolutely sure you're posting in the right place.
Please read these before you post! —
Posts may use any of the Perl Monks Approved HTML tags:
- a, abbr, b, big, blockquote, br, caption, center, col, colgroup, dd, del, details, div, dl, dt, em, font, h1, h2, h3, h4, h5, h6, hr, i, ins, li, ol, p, pre, readmore, small, span, spoiler, strike, strong, sub, summary, sup, table, tbody, td, tfoot, th, thead, tr, tt, u, ul, wbr
You may need to use entities for some characters, as follows. (Exception: Within code tags, you can put the characters literally.)
|
For: |
|
Use: |
| & | | & |
| < | | < |
| > | | > |
| [ | | [ |
| ] | | ] |
Link using PerlMonks shortcuts! What shortcuts can I use for linking?
See Writeup Formatting Tips and other pages linked from there for more info.
|
|