Thread
:
check for existence of environment variable
View Single Post
#
2
(
permalink
)
01-16-2008, 08:39 PM
scott.myron@steelox.com
Posts: n/a
Re: check for existence of environment variable
sounds like "set -u" is in effect (treat unset variables as error).
Echo $- in the script, if you see "u" in the list, then try the script
w/ "set +u" and see if that behaves as you want.
scott.myron@steelox.com