getsettings: bash source script to augment current env.
authorwenzelm
Mon, 02 Dec 1996 18:23:11 +0100
changeset 2299 ed9720047d53
parent 2298 df82271be07b
child 2300 9af0cf87ac48
getsettings: bash source script to augment current env.
lib/scripts/getsettings
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/lib/scripts/getsettings	Mon Dec 02 18:23:11 1996 +0100
@@ -0,0 +1,15 @@
+#
+# getsettings - bash source script to augment current env
+#
+# $Id$
+#
+
+#value set by caller
+export ISABELLE_HOME
+
+set -o allexport
+
+. $ISABELLE_HOME/etc/settings
+[ -f $ISABELLE_HOME_USER/etc/settings ] && . $ISABELLE_HOME_USER/etc/settings
+
+set +o allexport