I wrote a shell script to run a set of experiments so I won't have to do it manually. The script runs a java .jar file 30 times, and runs a set of those 30 times 17 times changing a few variables in between.
I invoke the program like this:
java -Djava.library.path=/Users/me/Desktop/Cfiles/DynamicCTGLayout/build/Release -jar [name of .jar file]
However, I can't do anything in parallel while the program runs because when this line is executed, the java executable pops out at the forefront of the screen. In essence when I work on something else it gets interrupted every 1-1.5 minutes. so I'm looking at a few hours I can't actually use the computer.
Is there a way to invoke an executable so that it doesn't pop out on top of all the other programs?
Sincerely, WhiteTiger
Edit: Basically I'm looking for the Mac OSX equivalent to Windows'
start /min java [arguments]