#!/bin/sh
#
# disp wrapper script
#
# $TenDRA: tendra/src/wrappers/common.sh,v 1.2 2003/08/25 06:34:47 nonce Exp $
#

# TenDRA settings
TENDRA_BASEDIR="/usr/local/lib/TenDRA"
TENDRA_VERSION="5.0.0"


# binary settings
BIN_RUN="${TENDRA_BASEDIR}/bin/disp"
OPTS_DEFAULT=""



# Execute disp with our compiled options.

if [ -n "$DEBUG" ]; then
	/bin/echo ${BIN_RUN} ${OPTS_DEFAULT} ${@+"$@"}
else
	${BIN_RUN} ${OPTS_DEFAULT} ${@+"$@"}
fi;


syntax highlighted by Code2HTML, v. 0.9.1