Now pass an arbitrary chunk of Perl code to "perl -e" in a portable manner.
I was only demonstrating that windows supported backticks, not championing the idea of using them and -e as a useful mechanism.
Capture both STDOUT and STDERR from it. Not so trivial.
Capturing stderr also is trivial: C:\test>perl -E"say `perl -c -Mstrict -we\"my \$l = 365.25*\" 2>&1` "
syntax error at -e line 1, at EOF
-e had compilation errors.
But I would have thought feeding the code to a piped-open and checking the exit code would suffice if all that is required is a yay or nay.
And if you need to actually capture the error messages produced, then this might do the trick: #! perl -slw
use strict;
use Win32::Socketpair qw[ winopen2_5 ];
my( $pid, $sock ) = winopen2_5( 'perl.exe', '-c' );
print $sock <<'EOP';
my $x = 365.25**3;
my $y = qx[ perl -c -e"say 'boo'"; ];
my $z = sub {
print $sock <<;
my $x = 365.25**3;
my $y = qx[ perl -c -e"say 'boo'"; ];
my $z = sub {
print $sock <<;
my $x = 365.25**3;
my $y = qx[ perl -c -e"say 'boo'"; ];
my $z = sub {
1;
};
};
};
EOP
shutdown $sock, 1;
print while <$sock>;
close $sock;
( $pid, $sock ) = winopen2_5( 'perl.exe', q[-E"say 'hello'; warn; die;
+"] );
shutdown $sock, 1;
print while <$sock>;
close $sock;
__END__
C:\test>winopen2_5
- syntax OK
Warning: something's wrong at -e line 1.
Died at -e line 1.
hello
With the rise and rise of 'Social' network sites: 'Computers are making people easier to use everyday'
Examine what is said, not who speaks -- Silence betokens consent -- Love the truth but pardon error.
"Science is about questioning the status quo. Questioning authority".
In the absence of evidence, opinion is indistinguishable from prejudice.
RIP Neil Armstrong
/iblockquote
Posts are HTML formatted. Put <p> </p> tags around your paragraphs. Put <code> </code> tags around your code and data!
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, 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, sup, table, tbody, td, tfoot, th, thead, tr, tt, u, ul, wbr
Outside of code tags, you may need to use entities for some characters:
| |
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.
|
|