#!/bin/sh
# Shell wrapper for xxx.tcl.  Idea is to allow PATH search for ``wish'' binary.
# RCS: $Header: /users/kennard/src/tkinfo/RCS/tkinfo,v 1.5 1993/12/23 01:57:38 kennard Exp $

# Set LIBDIR to the directory where tkinfo.tcl is installed.  The 
# default ``LIBDIR=`/bin/dirname $0`''
# uses the same directory as where this shell script is installed.
# You might consider installing the scripts into "/usr/local/lib/tkinfo",
# and using LIBDIR=/usr/local/lib/tkinfo.
LIBDIR=/usr/X386/lib/X11/tk/tkinfo
# Set the name (or path) of the wish binary.  Normally just ``wish''.
WISH=wish
exec $WISH -file $LIBDIR/tkinfo.tcl -name tkinfo ${1+"$@"}
exit 1

# Alternatively, if you want to hard code where both wish and tkinfo is
installed, you can delete everything above and including this line, and do:
#!/usr/local/bin/wish -f
source /usr/local/lib/tkinfo/tkinfo.tcl
