Skip to content

Commit a3ff75b

Browse files
authored
Update 06_modules.mdx
1 parent 117e5cd commit a3ff75b

1 file changed

Lines changed: 3 additions & 1 deletion

File tree

docs/hpc/13_tutorial_intro_hpc/06_modules.mdx

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -202,16 +202,18 @@ Create a job that is able to run `R --version`. Remember, no software is loaded
202202
[NetID@log-1 ~]$ nano r-module.sh
203203
[NetID@log-1 ~]$ cat r-module.sh
204204
#!/bin/bash
205-
#SBATCH #SBATCH -t 00:00:30
205+
#SBATCH -t 00:00:30
206206

207207
module load r/gcc/4.4.0
208208

209209
R --version
210210
[NetID@log-1 ~]$ sbatch r-module.sh
211+
```
211212
:::
212213
</details>
213214

214215
:::tip[Key Points]
215216
- Load software with `module load softwareName`.
216217
- Unload software with `module unload`
217218
- The module system handles software versioning and package conflicts for you automatically.
219+
:::

0 commit comments

Comments
 (0)