ajout de tous les chapitres enfin terminés

This commit is contained in:
2026-01-16 09:14:46 +01:00
parent 85546fb6df
commit 426987e567
129 changed files with 8013 additions and 529 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