#!/usr/bin/env rc

#LMOD_ROOT='@@HOMEBREW_CELLAR@@/lmod/9.2/..'
LMOD_PKG='@@HOMEBREW_CELLAR@@/lmod/9.2'
LMOD_DIR='@@HOMEBREW_CELLAR@@/lmod/9.2/libexec'
LMOD_CMD='@@HOMEBREW_CELLAR@@/lmod/9.2/libexec/lmod'
MODULESHOME='@@HOMEBREW_CELLAR@@/lmod/9.2'

fn module {
  eval `{$LMOD_CMD rc $*}
}

fn clearMT {
  eval `{$LMOD_DIR/clearMT_cmd rc}
}

########################################################################
#  ml is a shorthand tool for people who can't type moduel, err, module
#  It is also a combination command:
#     ml            -> module list
#     ml gcc        -> module load gcc
#     ml -gcc intel -> module unload gcc; module load intel
#  It does much more do: "ml --help" for more information.
fn ml {
  eval `{$LMOD_DIR/ml_cmd $*}
}

# Local Variables:
# mode: shell-script
# indent-tabs-mode: nil
# End:
