Skip to content

Commit f80f33e

Browse files
committed
Update run.md
1 parent bf3d1ea commit f80f33e

File tree

1 file changed

+3
-3
lines changed
  • docs/software/container-engine

1 file changed

+3
-3
lines changed

docs/software/container-engine/run.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,20 +3,20 @@
33
Specifying the `--environment` option to the Slurm command (e.g., `srun` or `salloc`) will make it run inside the EDF environment.
44
There are three ways to do so:
55

6-
1. **Through an absolute path**: providing an absolute path to EDF.
6+
1. **Through an absolute path**: an absolute path to EDF.
77

88
```console
99
$ srun --environment=$SCRATCH/edf/debian.toml cat /etc/os-release
1010
```
1111

12-
2. **Through a relative path**: providing a relative path to EDF. The path is from the current working directory (i.e., where the Slurm command is executed). Should be prepended by `./`.
12+
2. **Through a relative path**: a path relative from the current working directory (i.e., where the Slurm command is executed). Should be prepended by `./`.
1313

1414
```console
1515
$ srun --environment=./debian.toml cat /etc/os-release # (1)
1616
```
1717
1. Assuming `debian.toml` is in the current folder.
1818

19-
3. **From EDF search paths**: providing the name of EDF in [EDF search path][ref-ce-edf-search-path]. `--environment` also accepts the EDF filename without the `.toml` extension:
19+
3. **From EDF search paths**: the name of EDF in [EDF search path][ref-ce-edf-search-path]. `--environment` also accepts the EDF filename without the `.toml` extension:
2020

2121
```console
2222
$ srun --environment=debian cat /etc/os-release # (1)

0 commit comments

Comments
 (0)