> - When connected remotely to the shell via ssh, any standard output is sent
> to the startup shell - the one that one ran the command line on. So that
> console is still active for output
>
The shell provdes the variable "out" which allows to write to the
current console
zz>out println "hello"
hello
zz>
by contrast
zz>println("hello")
or
zz>System.out println "hello"
will print to standard output. This may not be available as when
clerezza is started by double-clicking the jar, if clerezza is started
on a console the standard output goes there disregarding any console
running there.
Cheers,
Reto