First problem: the comparison of $args with 2. What is $args? It's not related to the %args hash that the single character options have been loaded into. Unfortunately, I can't figure out what you actually want to test. So that's the first warning you're getting. And with the code you've posted, that's the only one.

After that, you need to note that the parameters you pass cause the appropriate variables to be set, and only those variables. So adding a diagnostic at the end of:

print "help=$help\n", "file=$file\n", "db=$database\n", "user=$user\n", "password=$password\n";
and then passing a parameter --file fred will still cause complaints about all the other values being unset.

Finally, and possibly most importantly, GetOptions destroys your @ARGV. So getopts will never have anything to read parameters from


In reply to Re: getopt? by tommyw
in thread getopt? by azool

Title:
Use:  <p> text here (a paragraph) </p>
and:  <code> code here </code>
to format your post, it's "PerlMonks-approved HTML":



  • 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:
    & &amp;
    < &lt;
    > &gt;
    [ &#91;
    ] &#93;
  • Link using PerlMonks shortcuts! What shortcuts can I use for linking?
  • See Writeup Formatting Tips and other pages linked from there for more info.