Setting the execution module storage directory

Set the execution module storage directory, in which the execution module of HULFT is stored, as an environment variable of the shell. The environment variable name is 'HULEXEP.' By setting this environment variable, you can automatically retrieve the path of the programs that HULFT executes. In addition, set the directory in which the execution module of HULFT is stored as 'PATH.' This will allow you to start HULFT from a directory other than the one that stores the execution module of HULFT.

[Example] When the execution module storage directory is /usr/local/hulft/bin

[Method of setting the execution module storage directory in an sh environment]

$ HULEXEP=/usr/local/hulft/bin 
$ export HULEXEP 
$ PATH=/usr/local/hulft/bin:$PATH 
$ export PATH

[Method of setting the execution module storage directory in a csh environment]

% setenv HULEXEP /usr/local/hulft/bin 
% set path=(/usr/local/hulft/bin $path)