I've got an ant target ant server
that runs a Java application which logs to the console. I need to run a new ant target ant server-gui
which also logs to the console. But when I run ant server
the logging prevents me from running any new ant
targets.
When I enter ^c
(which is the only way I know of to get out of situations like that) it kills the Java application. I need both to run. What keystroke will get me out of that "input" mode and able to run new terminal commands?
UPDATE: I haven't found a direct solution to getting out of that mode I mentioned, but opening a new tab/window in terminal does the trick. I can run as many any commands as I'd like that way. Still looking for a good solution to get out the "input" mode, though!
UPDATE 2: @abcdef pointed out another post that has an even more elegant solution.