#!/bin/sh## Wrapper script for DISLIN binaries.## $FreeBSD$#DISLIN=%%DISLIN_DIR%%
export DISLIN
LD_LIBRARY_PATH=$DISLIN:$LD_LIBRARY_PATHexport LD_LIBRARY_PATH
self="${0##*/}"program="${DISLIN}/bin/${self}"if[ -x "${program}"];thenexec"${program}""$@"elseecho"${self} does not seem to exist."1>&2exit1fi