mirror of
https://github.com/envmodules/modules.git
synced 2026-06-14 00:42:43 +08:00
125 lines
2.6 KiB
Plaintext
125 lines
2.6 KiB
Plaintext
#%Module1.0
|
|
|
|
##############################################################################
|
|
# Modules Revision 3.0
|
|
# Providing a flexible user environment
|
|
#
|
|
# File: info/%M%
|
|
# Revision: %I%
|
|
# First Edition: 95/12/06
|
|
# Last Mod.: %U%, %G%
|
|
#
|
|
# Authors: Jens Hamisch, Jens.Hamisch@Strawberry.COM
|
|
#
|
|
# Description: Testuite modulefile
|
|
# Command:
|
|
# Sub-Command: module-info mode
|
|
#
|
|
# Invocation: load @M@/@V@, unload @M@/@V@, display @M@/@V@
|
|
# Invocation: switch @M@/mode3 @M@/mode4, help @M@/@V@
|
|
# Result: %R(load){
|
|
# load
|
|
# setenv _LMFILES_ ${_LMFILES_}:@M@/@V@
|
|
# setenv LOADEDMODULES ${LOADEDMODULES}:@P@/@M@/@V@
|
|
# }R%
|
|
# %R(unload){
|
|
# remove
|
|
# unsetenv _LMFILES_
|
|
# unsetenv LOADEDMODULES
|
|
# }R%
|
|
# %R(display){
|
|
# -------------------------------------------------------------------
|
|
# @P@/@M@/@V@:
|
|
#
|
|
# display
|
|
# -------------------------------------------------------------------
|
|
# }R%
|
|
# %R(switch){
|
|
# remove
|
|
# switch1
|
|
# switch
|
|
# switch2
|
|
# switch
|
|
# remove
|
|
# switch3
|
|
# switch
|
|
# setenv _LMFILES_ ${_LMFILES_}:@M@/mode2
|
|
# setenv LOADEDMODULES ${LOADEDMODULES}:@P@/@M@/mode2
|
|
# }R%
|
|
# %R(help){
|
|
# ----------- Module Specific Help for '@M@/@V@' -----------------
|
|
#
|
|
# help
|
|
# }R%
|
|
# Comment: %C{
|
|
# This modulefile checks the probing for the current
|
|
# modulecmd runmode
|
|
# }C%
|
|
#
|
|
##############################################################################
|
|
|
|
proc ModulesHelp { } {
|
|
if { [module-info mode help] } {
|
|
puts stderr "help"
|
|
}
|
|
}
|
|
|
|
proc ModulesTest { } {
|
|
if { [module-info mode test] } {
|
|
puts stderr "test"
|
|
}
|
|
return 1
|
|
}
|
|
|
|
if { ![module-info mode whatis] } {
|
|
|
|
#
|
|
# module-info mode is called here explicitely in order to check if it works!
|
|
#
|
|
|
|
if { [module-info mode load] } {
|
|
puts stdout "load"
|
|
}
|
|
if { [module-info mode unload] } {
|
|
puts stdout "unload"
|
|
}
|
|
if { [module-info mode remove] } {
|
|
puts stdout "remove"
|
|
}
|
|
if { [module-info mode refresh] } {
|
|
puts stdout "refresh"
|
|
}
|
|
if { [module-info mode nonpersist] } {
|
|
puts stdout "nonpersist"
|
|
}
|
|
if { [module-info mode display] } {
|
|
puts stdout "display"
|
|
}
|
|
if { [module-info mode help] } {
|
|
puts stdout "help"
|
|
}
|
|
if { [module-info mode test] } {
|
|
puts stdout "test"
|
|
}
|
|
if { [module-info mode switch1] } {
|
|
puts stdout "switch1"
|
|
}
|
|
if { [module-info mode switch2] } {
|
|
puts stdout "switch2"
|
|
}
|
|
if { [module-info mode switch3] } {
|
|
puts stdout "switch3"
|
|
}
|
|
if { [module-info mode whatis] } {
|
|
puts stdout "whatis"
|
|
}
|
|
|
|
#
|
|
# module-info mode switch overlays switch?
|
|
#
|
|
|
|
if { [module-info mode switch] } {
|
|
puts stdout "switch"
|
|
}
|
|
}
|