lib/Tools/browser
author paulson
Wed, 05 Aug 1998 10:57:25 +0200
changeset 5253 82a5ca6290aa
parent 3640 7554be69fd09
child 7766 444ac56ead91
permissions -rwxr-xr-x
New record type of programs

#!/bin/bash
#
# $Id$
#
# DESCRIPTION: Isabelle theory graph browser


PRG=$(basename $0)

function usage()
{
  echo
  echo "Usage: $PRG [GRAPHFILE]"
  echo
  exit 1
}


## main

[ "$1" = "-?" -o $# -gt 1 ] && usage

export CLASSPATH=$ISABELLE_HOME/lib/browser

[ $# -ne 1 ] && cd $ISABELLE_BROWSER_INFO/graph/data

java GraphBrowser.GraphBrowser $1