9 lines
164 B
Bash
Executable File
9 lines
164 B
Bash
Executable File
#!/bin/sh
|
|
BINDIR=$(dirname "$(readlink -fn "$0")")
|
|
cd "$BINDIR"
|
|
echo Minecraft Land Generator - Run MLG - Linux
|
|
echo $BINDIR
|
|
|
|
java -jar MinecraftLandGenerator.jar
|
|
|