You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This will search any help message or whatis description for the word(s) given on the command line.
But I find that it does not search the content of lua help at all.
Example:
$ module spider git
-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
git: git/2.38.1
-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
Description:
Git is a free and open source distributed version control system designed to handle everything from small to very large projects with speed and efficiency.
This module can be loaded directly: module load git/2.38.1
Help:
This module exposes the following command(s):
- git-receive-pack
- scalar
- git
- git-shell
- git-upload-archive
- git-subtree
- git-upload-pack
- git-cvsserver
so far, so good. I can search for something in the 'whatis' section of the .lua file just fine:
$ module keyword "distributed version"
-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
The following modules match your search criteria: "distributed version"
-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
git: git/2.38.1
Git is a free and open source distributed version control system designed to handle everything from small to very large projects with speed and efficiency.
however, searching for something in the "help" section fails:
$ module keyword git-subtree
-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
The following modules match your search criteria: "git-subtree"
-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
To learn more about a package execute:
$ module spider Foo
where "Foo" is the name of a module.
To find detailed information about a particular package you
must specify the version if there is more than one version:
$ module spider Foo/11.1
-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
Might this be a configuration issue on my side, or is the documentation incorrect?
I am running
$ module --version
Modules based on Lua: Version 8.7.49 2024-08-30 13:55 -06:00
by Robert McLay [email protected]
I have developed a workaround using ripgrep, but feel this is worth reporting.
The text was updated successfully, but these errors were encountered:
Notes
I read in your documentation about
module keyword
that:But I find that it does not search the content of lua
help
at all.Example:
so far, so good. I can search for something in the 'whatis' section of the .lua file just fine:
however, searching for something in the "help" section fails:
Might this be a configuration issue on my side, or is the documentation incorrect?
I am running
I have developed a workaround using ripgrep, but feel this is worth reporting.
The text was updated successfully, but these errors were encountered: