mirror of
https://github.com/envmodules/modules.git
synced 2026-06-10 00:56:30 +08:00
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.
19 lines
473 B
Plaintext
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@"
|
|
|