Files
modules/contrib/modulefiles/gnu
Kent Mein d081f55283 Added really old man pages, and a bunch of example things.
Still need to write some documentation for the contrib stuff and
update the man pages.
2013-03-04 07:42:13 -06:00

22 lines
761 B
Plaintext

#%Module######################################################################
##
## GNU Module
##
proc ModulesHelp { } {
puts stderr "\tGNU Software\n"
puts stderr "\tThe GNU software package contains a variety of UNIX programs like cp, ls, rm, etc. It also contains more powerful tools like tar, and emacs."
puts stderr "\tBe advised that if you have this module loaded before the 'system' module, that you will be using the GNU versions of common UNIX commands."
puts stderr "\tWebsite: http://www.gnu.org/"
}
set sys [uname sysname]
set os [uname release]
if { [file isdirectory /opt/gnu] } {
append-path PATH /opt/gnu/bin
append-path MANPATH /opt/gnu/man
}
#
# end of main switch statement
#