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