/usr/games/bubbros is in bubbros 1.6.2-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 | #! /bin/sh
# Launcher for "The Bub's Brother"
#
# Copyright (C) 2007 by Siegfried Gevatter <siggi.gevatter@gmail.com>
#
# Released under the GNU General Public License, version 2 or later,
# see "/usr/share/common-licenses/GPL".
if [ -z $exec_file ]
then
exec_file=/usr/share/games/bubbros/BubBob.py
fi
if [ ! -f $exec_file ]
then
echo "Error! File \"$exec_file\" doesn't exist!"
exit 1
fi
# Move to the directory where the script is
cd ${exec_file%/*}
python $exec_file $*
|