in reply to Re^2: File handle as a input variable
in thread File handle as a input variable
for the open, put a valid path in there, like:
open my $File_Handle, ">", "full_textual_path_to_a_file" or die ....
Later use:
print $File_Handle "some stuff\n";
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^4: File handle as a input variable
by Anonymous Monk on May 06, 2009 at 05:00 UTC | |
by Anonymous Monk on May 06, 2009 at 05:57 UTC |