#!/bin/sh
# Check to see if the "--o" argument is present.
# If it is, run tclsh, otherwise, run wish.

THESH="wish"

for arg in "$@"
do
  if [ "$arg" = "--o" ]
  then
      THESH="tclsh"
  fi
done

exec $THESH "/usr/share/boust/boust.tcl" "$@"

