in reply to Writing in more FILEHANDLES
Well, you could just implement it yourself
sub tee { my ($fh1,@output) = @_; print $fh1 @output; print @output; } open my $fh,">","thefile.txt" or die "horribly"; tee ($fh,"What I wanted to say");
Or use IO::Tee
use IO::Tee; my $tee = new IO::Tee(\*STDOUT,">thefile.txt"); print $tee "What I wanted to say";
|
|---|