ajout algo glouton + filius

This commit is contained in:
2022-05-04 18:39:31 +02:00
parent 8b544dba16
commit 92c5087408
110 changed files with 6166 additions and 0 deletions

View File

@@ -0,0 +1,19 @@
#!/bin/bash
#
# This script is meant as supportive start script for
# UNIX-like systems, e.g., Linux or Mac OS X
#
echo "Possible parameters:"
echo -e "\t-l\t\twrite log file 'filius.log'"
echo -e "\t-wd <path>\tchange base directory for working directory '.filius'"
echo
# change to directory where filius is installed
relpath=$0
cd ${relpath%`basename $0`}
# start filius
java -jar filius.jar $@
# change back to former directory
cd - > /dev/null