in reply to terminal control in MS

See also -Mouse.

                - tye

Replies are listed 'Best First'.
Re: Re: terminal control in MS (-Mouse)
by RandomWalk (Beadle) on Dec 01, 2003 at 19:40 UTC
    I like how this place works! I can combine suggestions from Roger and -Mouse to get a window only for STDERR:
    package ouse; BEGIN { use IO::Capture::Stderr; $ouse::capture = IO::Capture::Stderr->new(); $ouse::capture->start(); } END { $ouse::capture->stop(); my @err = $capture->read; if ($#err >= 0) { print "$_" for @err; <STDIN>; } } 1;
    Thank you for taking the time.