Extending module collection section authored by Marc-André Hermanns's avatar Marc-André Hermanns
...@@ -34,6 +34,8 @@ To get a list of all loaded modules, you can use the `list` option. ...@@ -34,6 +34,8 @@ To get a list of all loaded modules, you can use the `list` option.
> module list > module list
``` ```
#### Searching modules
If you don't know how a specific module is called or a module is currently not visible to you and you want search for a software, you can use the `spider` option. If you don't know how a specific module is called or a module is currently not visible to you and you want search for a software, you can use the `spider` option.
```sh ```sh
...@@ -62,6 +64,8 @@ If you want to reset the module environment to the system default, you can use t ...@@ -62,6 +64,8 @@ If you want to reset the module environment to the system default, you can use t
> module reset > module reset
``` ```
#### Personal module collections
You can save a collection of loaded modules to to a named collection with the `save` option. You can save a collection of loaded modules to to a named collection with the `save` option.
```sh ```sh
...@@ -74,6 +78,18 @@ To restore a previously saved connection, you can restore the save module collec ...@@ -74,6 +78,18 @@ To restore a previously saved connection, you can restore the save module collec
> module restore <collection-name> > module restore <collection-name>
``` ```
To list all available personal module collections, you can use the `savelist` option.
```sh
> module savelist
```
To remove a specific save module collection.
```sh
> module disable <collection-name>
```
### Core Compiler ### Core Compiler
For all packages a certain version of GCC is automatically loaded as `GCCcore` module. The `GCCcore` module will be part of the dependencies for making a certain module visible. For all packages a certain version of GCC is automatically loaded as `GCCcore` module. The `GCCcore` module will be part of the dependencies for making a certain module visible.
... ...
......