#!/bin/sh
# script for testing wishx before installation
TCLX_LIBRARY=/opt/dsap/tcl7.4tk4.0/itcl2.0/tclX7.4a-p2/tclmaster
TKX_LIBRARY=/opt/dsap/tcl7.4tk4.0/itcl2.0/tclX7.4a-p2/tkmaster
TCL_PROGRAM=/opt/dsap/tcl7.4tk4.0/itcl2.0/tclX7.4a-p2/src/tcl
WISHX=/opt/dsap/tcl7.4tk4.0/itcl2.0/tclX7.4a-p2/tksrc/wishx
export TCLX_LIBRARY TKX_LIBRARY TCL_PROGRAM
if [ $# = 0 ]
then
    exec $WISHX
else
    exec $WISHX "$@"
fi
