| author | paulson |
| Fri, 31 Jan 1997 17:51:42 +0100 | |
| changeset 2576 | 390c9fb786b5 |
| parent 2478 | adbd622bb375 |
| child 2590 | 363b2c37a1b9 |
| permissions | -rw-r--r-- |
| 2307 | 1 |
# |
2 |
# $Id$ |
|
|
2299
ed9720047d53
getsettings: bash source script to augment current env.
wenzelm
parents:
diff
changeset
|
3 |
# |
| 2348 | 4 |
# getsettings - bash source script to augment current env. |
|
2299
ed9720047d53
getsettings: bash source script to augment current env.
wenzelm
parents:
diff
changeset
|
5 |
# |
|
ed9720047d53
getsettings: bash source script to augment current env.
wenzelm
parents:
diff
changeset
|
6 |
|
|
ed9720047d53
getsettings: bash source script to augment current env.
wenzelm
parents:
diff
changeset
|
7 |
#value set by caller |
|
ed9720047d53
getsettings: bash source script to augment current env.
wenzelm
parents:
diff
changeset
|
8 |
export ISABELLE_HOME |
|
ed9720047d53
getsettings: bash source script to augment current env.
wenzelm
parents:
diff
changeset
|
9 |
|
|
ed9720047d53
getsettings: bash source script to augment current env.
wenzelm
parents:
diff
changeset
|
10 |
set -o allexport |
|
ed9720047d53
getsettings: bash source script to augment current env.
wenzelm
parents:
diff
changeset
|
11 |
|
| 2428 | 12 |
. $ISABELLE_HOME/etc/settings || exit 2 |
|
2299
ed9720047d53
getsettings: bash source script to augment current env.
wenzelm
parents:
diff
changeset
|
13 |
[ -f $ISABELLE_HOME_USER/etc/settings ] && . $ISABELLE_HOME_USER/etc/settings |
|
ed9720047d53
getsettings: bash source script to augment current env.
wenzelm
parents:
diff
changeset
|
14 |
|
| 2478 | 15 |
ISABELLE=$ISABELLE_HOME/bin/isabelle |
16 |
ISATOOL=$ISABELLE_HOME/bin/isatool |
|
17 |
||
|
2299
ed9720047d53
getsettings: bash source script to augment current env.
wenzelm
parents:
diff
changeset
|
18 |
set +o allexport |