It would probably help to generalize the checking with a subroutine. This might help get you started. It would take the configuration setting and a hashref with all the relevant info. It would return the option and the message.

sub optionize { my ($config_setting, $opthash) = @_; my $option_name = $opthash->{option}; if (defined $config_setting && ($config_setting =~ /1|true|yes/i)) +{ return( "--$option_name", $opthash->{msg_yes} ); } elsif (defined $config_setting && ($config_setting =~ /0|false|no +/i)) { return( "--not-$option_name", $opthash->{msg_no} ); } else { return( undef, $opthash->{msg_default} ); } }

If you are going to keep a hash of all of the argument stuff, I suggest you make it an HoH where the subhashes are keyed by some canonical name for the argument. Lots of "F-arg" and "t_arg" and "t_msg" and "f_msg" keys are going to get nasty.

I also suggest that you think about using READMORE tags in long questions like that.

-sauoq
"My two cents aren't worth a dime.";

In reply to Re: Cleansing and stacking arguments before calling system() by sauoq
in thread Cleansing and stacking arguments before calling system() by hacker

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.