Commit d3c82520 authored by Mani Tofigh's avatar Mani Tofigh

changed --output directive explanation

parent ef13677a
...@@ -30,7 +30,7 @@ python my_script.py ...@@ -30,7 +30,7 @@ python my_script.py
Explanation: Explanation:
- `#!/bin/bash`: This line indicates that the script should be run in the bash shell. - `#!/bin/bash`: This line indicates that the script should be run in the bash shell.
- `#SBATCH --job-name`: Sets the name of the job. - `#SBATCH --job-name`: Sets the name of the job.
- `#SBATCH --output`: Specifies where to write the job's standard output. - `#SBATCH --output`: Specifies the writing path of the standard output as well as the name of the output file.
- `#SBATCH --ntasks`: Number of tasks. In this case, it's a single-task job. - `#SBATCH --ntasks`: Number of tasks. In this case, it's a single-task job.
- `#SBATCH --time`: The maximum time for the job (here, 10 minutes). - `#SBATCH --time`: The maximum time for the job (here, 10 minutes).
- `#SBATCH --mem-per-cpu`: Memory per CPU in megabytes. - `#SBATCH --mem-per-cpu`: Memory per CPU in megabytes.
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment