Beefy Boxes and Bandwidth Generously Provided by pair Networks
laziness, impatience, and hubris
 
PerlMonks  

comment on

( [id://3333]=superdoc: print w/replies, xml ) Need Help??
perl -le "open(my $x, "">&STDOUT"");"

Not quite - but close enough ;-)
Thank you.
Either of the following work and, AFAICT, are equivalent - though I'm not exactly sure why that equivalence should hold:
perl -le "open(my $x, \"">&STDOUT"\");" perl -le "open(my $x, "\">&STDOUT\"");"
So I gather it's just the way the shell functions (as opposed to an issue with perl), that I can do:
C:\_32>perl -Mstrict -MDevel::Peek -le "my $arg = \"STDOUT\"; Dump $ar +g;" SV = PV(0x36cd1c) at 0x44b124 REFCNT = 1 FLAGS = (POK,IsCOW,pPOK) PV = 0x451dc4 "STDOUT"\0 CUR = 6 LEN = 10 COW_REFCNT = 1
but it blows up as soon as I introduce shell metacharacters into the string:
C:\_32>perl -Mstrict -MDevel::Peek -le "my $arg = \">&STDOUT\"; Dump $ +arg;" >& was unexpected at this time.
And I guess the additional quotes provide the disambiguation required to allow the one-liner to DWIM.

Cheers,
Rob

In reply to Re^2: [Win32] Escaping quotes in perl one liner by syphilis
in thread [Win32] Escaping quotes in perl one liner by syphilis

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



  • Are you posting in the right place? Check out Where do I post X? to know for sure.
  • Posts may use any of the Perl Monks Approved HTML tags. Currently these include the following:
    <code> <a> <b> <big> <blockquote> <br /> <dd> <dl> <dt> <em> <font> <h1> <h2> <h3> <h4> <h5> <h6> <hr /> <i> <li> <nbsp> <ol> <p> <small> <strike> <strong> <sub> <sup> <table> <td> <th> <tr> <tt> <u> <ul>
  • Snippets of code should be wrapped in <code> tags not <pre> tags. In fact, <pre> tags should generally be avoided. If they must be used, extreme care should be taken to ensure that their contents do not have long lines (<70 chars), in order to prevent horizontal scrolling (and possible janitor intervention).
  • Want more info? How to link or How to display code and escape characters are good places to start.
Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others avoiding work at the Monastery: (5)
As of 2024-04-23 17:04 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found