/usr/lib/neuron/bin/bbswork.sh is in neuron-dev 7.5-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 | #!/bin/sh
prefix=/usr
exec_prefix=/usr/lib/neuron
NRNBIN=${exec_prefix}/bin
ARCH=x86_64
MODSUBDIR=x86_64
NEURONHOME=/usr/share/nrn
cd $1
if [ -x ${MODSUBDIR}/special ] ; then
program="./${MODSUBDIR}/special"
else
program="${NRNBIN}/nrniv"
fi
hostname
pwd
shift
shift
echo "time $program $*"
time $program $*
|