I wrote a shell script to run a set of experiments, so I donβt have to do it manually. The script runs the java.jar file 30 times and runs a set of these 30 times 17 times, changing several variables between them.
I call the program as follows:
java -Djava.library.path=/Users/me/Desktop/Cfiles/DynamicCTGLayout/build/Release -jar [name of .jar file]
However, I cannot do anything in parallel while the program is running, because when this line is executed, the java executable appears at the front edge of the screen. In fact, when I work on something else, it is interrupted every 1-1.5 minutes. so I look at a few hours, I canβt actually use a computer.
Is there a way to call the executable so that it does not pop up on top of all other programs?
Regards, WhiteTiger
Edit: I am mainly looking for Mac OSX for Windows' equivalent
start /min java [arguments]
source
share