Posted by James Louis on February 13, 2001 at 20:46:20:
In response to the question:
>I was wondering how console and error stream >redirection is accomplished without an LAX file?
David Clutter replied:
In the rund2k script, find the line that looks like this:
java ncsa.d2k.controller.LocalController
and redirect the output there--something like this:
java ncsa.d2k.controller.LocalController > outputFile
This will redirect anything written to System.out to
outputFile. System.err will still print to the console.