in reply to mapping through filehandles
my $log = "Hello World!"; my $stdout_handler = \*STDOUT; my $r_handler = \*R; # R has been open()-ed as usual map { print $_ $log } ($stdout_handler, $r_handler);
|
---|
Replies are listed 'Best First'. | |
---|---|
Re: Re: mapping through filehandles
by runrig (Abbot) on Oct 28, 2001 at 21:49 UTC | |
Re: Re: mapping through filehandles
by Anonymous Monk on Oct 28, 2001 at 20:51 UTC | |
by larsen (Parson) on Oct 28, 2001 at 21:41 UTC |