=head1 NAME IO::MultiHandle - Encapsulate multiple handles in one. =head1 SYNOPSIS use IO::MultiHandle; my $logfh = IO::File->new( "> $outfile" ) or die "write $outfile: $!"; # create a multi-handle which will write to both # STDERR and the filehandle created above: my $mfh = new IO::MultiHandle *STDERR, $logfh; print $mfh "A line of output.\n"; =cut