13 lines
315 B
Bash
13 lines
315 B
Bash
#!/bin/bash
|
|
#
|
|
# This script is meant as supportive start script for
|
|
# UNIX-like systems, e.g., Linux or Mac OS X
|
|
#
|
|
|
|
# change to directory where filius is installed
|
|
script_path=`readlink -f $0`
|
|
installation_path=${script_path%`basename ${script_path}`}
|
|
|
|
# start filius
|
|
java -jar ${installation_path}filius.jar "$@"
|