Setting XBUS_HOME on UNIX machine
The proper syntax for creating environment variables is shell dependent.
Here are some examples. Consider the xBus installed into the
/opt/xBus directory.
-
To set an environment variable in
sh or ksh, use this syntax:
XBUS_HOME=/opt/xBus;
export XBUS_HOME;
|
-
To set an environment variable in
csh, use the setenv command.
setenv XBUS_HOME /opt/xBus;
|
For more information about the shell environment, consult the manual
page for the shell you're using.
|