/usr/bin/selektor is in selektor 3.13.72-2.
This file is owned by root:root, with mode 0o755.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 | #!/bin/sh
#
# Startup script for SelekTOR
# We need to ensure we startup in the correct working directory
SELEKTOR_HOME=/usr/share/selektor
# Run our jar file
cd $SELEKTOR_HOME
java -Xms32m -Xmx64m -jar SelekTOR.jar --update-disable "$@" &
|