This is actually a followup to: Re: codeopen INPUT opened only for output

a) yes I was able to get it to work with a double dup to save STDOUT (see b below) however I don't understand why I cannot recover STDOUT by one of:

open(STDOUT, '>-'); open(STDOUT, '>&=1');

b)The folloing is similar to what you posted with some updates *but* if you run it with -w -Mstrict you get: Name "main::SAVE" used only once: possible typo

use POSIX; local $/ = undef; my $chldoutput; my $TRAP = POSIX::tmpnam(); print "Gonna use $TRAP\n"; open(SAVE1, ">&STDOUT"); open(SAVE2, ">&STDERR"); close(STDOUT); open(STDERR, ">$TRAP"); open(STDOUT, ">>$TRAP") || die("$!: $TRAP"); #+> didn't work eval "print STDERR 'Scary... ';print 'Waka waka!'"; close(STDOUT); close(STDERR); open(STDOUT, ">&SAVE1"); open(STDERR, ">&SAVE2"); open(INPUT, $TRAP) || die("$!: $TRAP"); $chldoutput = <INPUT>; print "ABC: $chldoutput\n"; unlink($TRAP);

-- perl -p -e "s/(?:\w);(<A HREF="/index.pl?node=st&lastnode_id=3333">st< +/A>)/'\$1/mg"

In reply to Re: Re: (Anarion) open(INPUT, "&lt;INPUT") gives INPUT opened only for output by belg4mit
in thread codeopen(INPUT, "&lt;INPUT") gives INPUT opened only for output by belg4mit

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.