Is it possible to execute a Java program in the background so the user can execute other commands in front of it?
For instance, here is how the console might look for said program:
$ myProgram
(executes program)
Program Started!
(output from myProgram)
$
(the user can enter another UNIX command while myProgram is still running)
Thanks in advance!