mirror of
https://github.com/envmodules/modules.git
synced 2026-06-07 00:25:05 +08:00
13 lines
346 B
Plaintext
13 lines
346 B
Plaintext
#%Module1.0######################################################################
|
|
##
|
|
## dot modulefile
|
|
##
|
|
proc ModulesHelp { } {
|
|
puts stderr "\tThe Dot Module\n"
|
|
puts stderr "\tThis module adds the current working directory to your path."
|
|
}
|
|
|
|
module-whatis "adds `.' to your PATH environment variable"
|
|
|
|
append-path PATH .
|