Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
是否可以使用 JobID 作为您提交的脚本的输入?
我知道您可以使用 %j 使用 JobID 命名日志文件,但是是否可以执行类似的操作,例如
sbatch make-dir.sh %j
make-dir.sh 在哪里
#!/bin/bash echo $1
就目前而言,它将打印 %j,但我希望它打印 JobID。
谢谢。
$SLURM_JOBID您应该在 make-dir.sh 中使用环境变量
$SLURM_JOBID
#!/bin/bash echo $SLURM_JOBID