/usr/bin/tasque is in tasque 0.1.12-4.1.
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 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 | #!/bin/bash
prefix="/usr"
exec_prefix="/usr/bin"
libdir="/usr/lib"
pkglibdir="/usr/lib/tasque"
cd ${pkglibdir}
for arg in $*; do
case "x--debug" in ("x$arg")
TASQUE_DEBUG=$arg
esac
case "x--trace=" in ("x${arg:0:8}")
TASQUE_TRACE=$arg
esac
case "x--profile=" in ("x${arg:0:10}")
TASQUE_PROFILE=$arg
esac
done
if [ -n "$TASQUE_DEBUG" -o -n "$TASQUE_TRACE" -o -n "$TASQUE_PROFILE" -o -n "$MONO_EXTRA_ARGS" ]; then
MONO_OPTIONS="$TASQUE_DEBUG $TASQUE_TRACE $TASQUE_PROFILE $MONO_EXTRA_ARGS"
echo "** Running Mono with $MONO_OPTIONS **"
fi
exec -a "Tasque" mono $MONO_OPTIONS "Tasque.exe" "$@"
|