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