Search code examples
slurmhpc

Check sbatch script of running job


When running an slurm job from an sbatch script, is there a command that lets me see what was in the sbatch script that I used to start this job? For example sacct tells me I'm on SLURM_JOB_ID.3 and I would like to see how many job steps there will be in total.

I'm looking for a command that takes the job id and prints the sbatch script it is running.


Solution

  • You can use

    scontrol write batch_script SLURM_JOB_ID
    

    The above will display the submission script for job identified with jobid 12345

    More info: https://slurm.schedmd.com/scontrol.html#OPT_write-batch_script