From 3097a8c50e4ea0706caf3ab9adf0b3cfe08f2cad Mon Sep 17 00:00:00 2001 From: Caughlin Bohn <35080828+cbohn4@users.noreply.github.com> Date: Tue, 13 Oct 2020 05:54:38 -0500 Subject: [PATCH] module: add page (#4628) --- pages/linux/module.md | 28 ++++++++++++++++++++++++++++ 1 file changed, 28 insertions(+) create mode 100644 pages/linux/module.md diff --git a/pages/linux/module.md b/pages/linux/module.md new file mode 100644 index 0000000000..828eec5d31 --- /dev/null +++ b/pages/linux/module.md @@ -0,0 +1,28 @@ +# module + +> Modify a users' environment using the module command. +> More information: . + +- Display available modules: + +`module avail` + +- Search for a module by name: + +`module spider {{module_name}}` + +- Load a module: + +`module load {{module_name}}` + +- Display loaded modules: + +`module list` + +- Unload a specific loaded module: + +`module {{module_name}}` + +- Unload all loaded modules: + +`module purge`