I have the following script (run
) with starts a project:
#!/bin/sh
######## ENTER PATH TO YOUR JAVA, JAVAC AND JAR BINARIES HERE
export JAVA_HOME=/usr/local/lib/jdk-8u25
export _JAVA_OPTIONS=
export PATH=${JAVA_HOME}/bin:${PATH}
java="java"
exec ${java} -server -d64 -XX:+UseParallelGC -Xms4G -Xmx4G -jar build/experiments.jar $*
typing ./run 8 5 5 -ins50 -del50 -keys1048576 -prefill -file-data-temp.csv
starts the project.
Using this post I managed to run the code from intellij, but because it see's it as an external shell script, debugging the code is impossible.
how can I make the script (run) as the "root" file of the project?