View Single Post

   
  #2 (permalink)  
Old 01-16-2008, 08:39 PM
scott.myron@steelox.com
 
Posts: n/a
Default 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.

Reply With Quote