#!/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=${prefix}
echo | ${prefix}/lib/i386-linux-gnu/tk707/tk707bin $args

