#!/bin/sh
args=""
for x in $*; do
    case $x in
    -h|-help) args="$args --help";; # tcl/tk catches these options...
    *)        args="$args $x";;
  esac
done
prefix=/usr
exec_prefix=/usr
echo | /usr/lib64/tk707/tk707bin $args
