New theory header syntax.
#!/usr/bin/env bash
#
# $Id$
# Author: Markus Wenzel, TU Muenchen
#
# Smart selection of isabelle-process versus isabelle-interface.
THIS=$(cd "$(dirname "$0")"; pwd)
NAME="$(basename "$0")"
case "$NAME" in
I*)
PRG=isabelle-interface
;;
i*)
PRG=isabelle-process
;;
esac
exec "$THIS/$PRG" "$@"