On Fri, Dec 4, 2009 at 10:59 PM, J. Patrick Harrington <[email protected]> wrote: > Thanks! Does that imply that you can have > multiple sessions running? (exit 1 ...)
You can have multiple sessions running (you just need to put them on different ports, and access them using corresponding URLs). However, the argument to "exit" is the exit code J returns to its caller. $ ./jconsole; echo $? exit 3 3 $ ./jconsole; echo $? exit 4 4 (I am not sure how you see the exit code in a windows cmd shell, but windows also uses this "exit code" concept. Normally 0 means "exit without errors" and non-zero means that some error occurred. The numbers are application specific, but I think they can not be larger than 255.) -- Raul ---------------------------------------------------------------------- For information about J forums see http://www.jsoftware.com/forums.htm
