liner2-cli 248 Bytes Edit Raw Blame History 1 2 3 4 5 6 7 8 9 10 11 12 13 #!/bin/bash # Get bash script location location DIR="$( cd "$( dirname "$0" )" && pwd )" name=liner2-cli jar=`find $DIR -name "$name*.jar" -type f` if [ -f "$jar" ] then java -Xss4m -Xmx10000M -jar $jar $@ else echo "Jar file not found." fi