This commit is contained in:
NikolajDanger
2022-04-30 16:18:13 +02:00
parent 2465cf84b7
commit b9ef4bb00e
174 changed files with 20605 additions and 100 deletions

20
W1/fasto/bin/mars.sh Executable file
View File

@ -0,0 +1,20 @@
#!/usr/bin/env bash
set -e # Die on first error.
base_dir="$(dirname "$0")"
# Determine location of MARS.
if ! [ "$MARS" ]; then
MARS="$base_dir/../bin/Mars4_5.jar"
if [[ $(uname -o 2> /dev/null) = "Cygwin" ]]; then
MARS="$(cygpath -w "$MARS")"
fi
fi
# Verify that Java is installed.
java -version &> /dev/null || (echo "Could not find java" && exit 1)
java -jar "$MARS" nc "$@"