vote up 4 vote down star
2

I need to output the same text to two different files (it is a application requirement, which I am testing). Now, I do not wish to open two file handles, write two lines to each, then close them a dozen times in my code.

Is there a simple way, perhaps using a single line in Perl (but not in the CLI!), to send the same text to two different files?

flag

1 Answer

vote up 17 vote down check

Use IO::Tee.

From the documentation's example:

use IO::Tee;
$tee = IO::Tee->new($handle1, $handle2);
print $tee "foo", "bar";
link|flag
thanks the solution worked well :-) – gagneet May 28 at 12:10

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.