Re: modules with rsh/ssh
Manage your shell environment variables and aliases
Brought to you by:
leomania,
xdelaruelle
From: Lloyd C. C. <lc...@po...> - 2002-02-19 20:50:33
|
Once upon a time (like on Feb 18, 2002), Jerry Hershkowitz wrote: > (First, I too am greatful for the Gods who created Modules.) Agreed :) > So, in my .cshrc, I have: > > ############################################################ > source <modules_installation_path>/modules/etc/csh.modules > if ($LOADEDMODULES == "null") then > echo "csh.modules already sourced; only null module loaded" > # put here modules you always want loaded > module load openwin > module load gnutools > module load man > #else > # module update > endif > ############################################################ I have just a brief comment here. It's more efficient to specify the modules in one load command like this: module load openwin gnutools man especially if they require additions to the PATH. Whenever an element is added to a user's path, a rehash is needed which can take a significant amount of time if the paths are long. -L |