lib/Tools/env
author huffman
Mon, 16 Feb 2009 13:08:21 -0800
changeset 29943 922b931fd2eb
parent 29143 72c960b2b83e
child 73604 51b291ae3e2d
permissions -rwxr-xr-x
datatype num = One | Dig0 num | Dig1 num

#!/usr/bin/env bash
#
# Author: Markus Wenzel, TU Muenchen
#
# DESCRIPTION: run a program in a modified environment


## diagnostics

PRG="$(basename "$0")"

function usage()
{
  echo
  echo "Usage: isabelle $PRG [CMDLINE ...]"
  echo
  echo
  echo "  Run CMDLINE within the Isabelle environment (via the system's env command)."
  echo
  exit 1
}


## main

[ "$1" = "-?" ] && usage

exec /usr/bin/env "$@"