If your shell is the tcsh , you can add the following lines to your csh_init/cshrc :
# ACME setup
if ($?SHORTHOST) then
if ($SHORTHOST == "kiewa") then
setenv RCCL /lci/project/pai/rccl/rccl.5.1
setenv ACME /lci/project/pai/acme/ACME_2.0
setenv PATH ${PATH}:$ACME/bin
# MANPATH and LD_LIBRARY_PATH need to be defined
# otherwise, the rccl script will bail out prematurely
if (!$?MANPATH ) then
setenv MANPATH .
endif
if (!$?LD_LIBRARY_PATH) then
setenv LD_LIBRARY_PATH .
endif
source $ACME/scripts/rcclX86_csh
endif
endif
|