I would like to send the output from a command to both STDOUT and to a variable. I want to combine:
my $var = `some command` ;
system( 'some command' ) ;
[Tee][1] is a step in the right direction but this sends it to a file rather than to a variable. I guess I could then read the file but it would be simpler to get it straight there.
[1]: http://search.cpan.org/~dagolden/Tee-0.13/lib/Tee.pod Tee