Re: r11190 again! 0.2808_04 will not install in Strawberry Perl 5.10.0.2...
[email protected] (Eric Wilhelm)
| Newsgroups | perl.module.build |
|---|---|
| Message-ID | <[email protected]> |
# from Jan Dubois
# on Monday 15 September 2008 13:39:
> I'm not paying full attention
>here right now, but I suspect that the buffering functionality is
>why you are considering IPC::Run here in the first place.
I'm mostly talking about having an alternative to backticks which
supports a list of atoms and doesn't involve shell quoting semantics.
Irony: most of the backtick usage is just to run perl -e $something.
Any reason I can't use something like the following on win32?
open(my $fh, '-|', $^X, @opts, '-e', $oneliner) or die $!;
my $output = do {local $/; readline($fh)};
--Eric
--
"Because understanding simplicity is complicated."
--Eric Raymond
---------------------------------------------------
http://scratchcomputing.com
---------------------------------------------------