Hi,

I try to write a script that redirects its output, both out and error, to
a log-file, if it's possible to the screen as well.

At the moment I'm doing this with 

open (FILE, ">whatever.txt");

open (STDOUT, ">&FILE");
open (SDTERR, ">&FILE");


But now of course I don't have the output on the screen any more.
Is it possible to get both? I tried it with pipes, but unfortunately wasn't
successful.

thanks, Christian

-- 
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to