Execute Command Line Java program in background
Posted
by Mark Szymanski
on Stack Overflow
See other posts from Stack Overflow
or by Mark Szymanski
Published on 2010-06-13T00:27:11Z
Indexed on
2010/06/13
0:32 UTC
Read the original article
Hit count: 584
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!
© Stack Overflow or respective owner