1#!/bin/sh 2 3if [ -z ${ELMER_HOME} ]; then 4 PREFIX= 5else 6 PREFIX="${ELMER_HOME}/bin/" 7fi 8 9exec ${PREFIX}ElmerSolver_mpi $* 10 11