G'day m_jaser,

Here's a very basic example of how you might go about this.

#!/usr/bin/env perl use strict; use warnings; use Data::Dump; use Getopt::Long qw{GetOptionsFromString}; my ($x, $y, $z) = (0, 0, 0); my %opts = ('x=i', \$x, 'y=i', \$y, 'z=i', \$z); dd \%opts; GetOptions(%opts); dd \%opts; print 'Enter new: '; chomp(my $new = <>); GetOptionsFromString($new, %opts); dd \%opts;

Sample run:

$ pm_1184309_getopt_long_opts_from_string.pl -x 1 -y 2 { "x=i" => \0, "y=i" => \0, "z=i" => \0 } { "x=i" => \1, "y=i" => \2, "z=i" => \0 } Enter new: -y 3 -z 4 -x 0 { "x=i" => \0, "y=i" => \3, "z=i" => \4 }

In "Re^2: How to process Getopt::Long from STDIN", you asked:

"I'm not sure how this works with GetOptionsFromString perhaps?"

That may answer your question. See the Getopt::Long documentation for details.

— Ken


In reply to Re: How to process Getopt::Long from STDIN by kcott
in thread How to process Getopt::Long from STDIN by m_jaser

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.