-
Notifications
You must be signed in to change notification settings - Fork 35
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #636 from lbarraga/module-available-fix
Module available fix
- Loading branch information
Showing
1 changed file
with
15 additions
and
15 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,21 +1,21 @@ | ||
<pre><code>$ <b>module av 2>&1 | more</b> | ||
--- /apps/gent/SL6/sandybridge/modules/all --- | ||
ABAQUS/6.12.1-linux-x86_64 | ||
AMOS/3.1.0-ictce-4.0.10 | ||
ant/1.9.0-Java-1.7.0_40 | ||
ASE/3.6.0.2515-ictce-4.1.13-Python-2.7.3 | ||
ASE/3.6.0.2515-ictce-5.5.0-Python-2.7.6 | ||
... | ||
<pre><code>$ <b>module av | more</b> | ||
--- /apps/gent/RHEL8/zen2-ib/modules/all --- | ||
ABAQUS/2021-hotfix-2132 | ||
ABAQUS/2022-hotfix-2214 | ||
ABAQUS/2022 | ||
ABAQUS/2023 | ||
ABAQUS/2024-hotfix-2405 (D) | ||
... | ||
</code></pre> | ||
|
||
Or when you want to check whether some specific software, some compiler or some | ||
application (e.g., MATLAB) is installed on the {{hpc}}. | ||
|
||
<pre><code>$ <b>module av 2>&1 | grep -i -e "matlab"</b> | ||
MATLAB/2010b | ||
MATLAB/2012b | ||
MATLAB/2013b | ||
<pre><code>$ <b>module av matlab</b> | ||
--- /apps/gent/RHEL8/zen2-ib/modules/all --- | ||
LIBSVM-MATLAB/3.30-GCCcore-11.3.0-MATLAB-2022b-r5 | ||
MATLAB/2019b | ||
MATLAB/2021b | ||
MATLAB/2022b-r5 (D) | ||
SPM/12.5_r7771-MATLAB-2021b | ||
</code></pre> | ||
|
||
As you are not aware of the capitals letters in the module name, we looked for | ||
a case-insensitive name with the "-i" option. |