Files
modules/modulefiles/null.in
rk e816ab15b5 modules is a shell tool for setting-up the user environment on the
fly, as it were.  It's a powerful mechanism for dynamically changing
environment variables, aliases, X11 resources, etc.
It uses an embedded Tcl intrepretor, with a few extensions.  Therefore,
it has a well defined language syntax.
Version 3.1 is GPL, and includes many improvements over the 3.0beta.
2000-06-28 00:17:34 +00:00

19 lines
473 B
Plaintext

#%Module1.0#####################################################################
##
## null modulefile
##
proc ModulesHelp { } {
global version
puts stderr "\tThis module does absolutely nothing."
puts stderr "\tIt's meant simply as a place holder in your"
puts stderr "\tdot file initialization."
puts stderr "\n\tVersion $version\n"
}
module-whatis "does absolutely nothing"
# for Tcl script use only
set version "@VERSION@"