I want to have Getopt::Std parse a "command line" for me, but the "command line" is coming from STDIN. I've done a simple "split /\s+/" to @ARGV, but that doesn't account for parameters with spaces surrounded by quotes:

use Getopt::Std; ## This works in general $cmdline = '-a b -c d'; @ARGV = split /\s+/, $cmdline; getopts( "a:c:" ); ### ...but this obviously fails: $cmdline = '-a "hello world" -b "some \"text\""';

The quoting and escaping is typically done by the *shell*. Any ideas to turn a scalar into an array for @ARGV? Using modules is OK provided they're part of the standard Perl distro; adding modules is not an option. Google's not being helpful.

Thanks!


In reply to Scalar to @ARGV for Getopt::Std by c64whiz

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.