/usr/bin/llines is in lifelines 3.0.61-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 9 10 11 12 13 14 15 16 17 18 19 20 21 22 | #!/bin/sh
#
# Wrapper script for lifelines
#
# used to setup proper environment variables for the program
# Otherwise, it would be a pain to find the reports
if [ -z ${LLPROGRAMS} ]
then
LLPROGRAMS=/usr/share/lifelines:/usr/local/share/lifelines
else
LLPROGRAMS=${LLPROGRAMS}:/usr/share/lifelines:/usr/local/share/lifelines
fi
if [ -z ${LLDATABASES} ]
then
LLDATABASES=.
else
LLDATABASES=${LLDATABASES}:.
fi
export LLPROGRAMS LLDATABASES
exec /usr/lib/lifelines/llines "$@"
|