If you are using  print then just include the FILEHANDLE before the message
(make sure that you open the file first) ie:

print FILE "hello";

mainly this means that most things that spit out messages toward STDOUT as
a default.

print "hello";

is the same as:

print STDOUT "hello";

I hope that helps.
David Monarres <[EMAIL PROTECTED]>

Reply via email to