in reply to Re: is this correct
in thread is this correct
And so on... all prints would go to FILEselect(FILE); print $text; print "blah blah blah\n";
Update:
Snowrider - This is assuming you have multiple files open and are printing to them as you go... and as I know the basic tasks you will have to perform as you come up to speed with Perl... this might be useful to you.
i.e.,
open DRILL_FILE, ">$drill_file"; open ROUT_FILE, ">$rout_file"; select(DRILL_FILE); print "stuff...\n"; select(ROUT_FILE); print "other stuff...\n";
Prost,
Moe
|
|---|