#! /bin/sh
if [ -z "$AUTO_DIR" ]; then
    AUTO_DIR=/usr/lib/auto-07p
    export AUTO_DIR
fi

if test "`uname`" = "Darwin"; then
  if which pythonw > /dev/null; then
    exec pythonw $AUTO_DIR/python/interactiveBindings.py ${1+"$@"};
  fi
fi
exec $AUTO_DIR/python/interactiveBindings.py ${1+"$@"};
