/usr/bin/runjmodeltest-cluster is in jmodeltest 2.1.10+dfsg-5.
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 | #!/bin/sh
if [ $# -lt 1 ] ; then
echo "Usage: $0 <# of cores> <datafiles>"
exit 1
fi
if [ ! -e machines ] ; then
cat <<EOT
<machines> file cannot be found. Please follow the mpj documentation at
http://mpjexpress.blogspot.de/2013/11/installing-configuring-and-using-mpj.html
to create one and start the according services
EOT
exit 1
fi
export NP=$1
shift
mpjrun -dev niodev -wdir $PWD/ -np $NP -jar jModelTest.jar $*
|