in reply to Re: Re: Re: Re: Re: Re: Re: Dumping data
in thread Dumping data

*sigh*
BEGIN { use IO::Tee; $ol = select IO::Tee->new( STDOUT, STDERR, IO::File->new...); }
I wouldn't encourage things like IO::Capture

Replies are listed 'Best First'.
Re: Re: Re: Re: Re: Re: Re: Re: Re: Dumping data
by Roger (Parson) on Jan 01, 2004 at 11:51 UTC
    OK, I get your point. That's a good solution. :-)

    I never thought about using IO::Tee. I have learnt something new today. Thanks.