add new chinese translations

This commit is contained in:
2024-12-30 15:25:56 +08:00
parent a850046d7b
commit 0d798759fd
5418 changed files with 105800 additions and 7052 deletions

20
pages.zh/linux/sbatch.md Normal file
View File

@@ -0,0 +1,20 @@
# sbatch
> 将批处理作业提交给 SLURM 调度器。
> 更多信息:<https://manned.org/sbatch>。
- 提交批处理作业:
`sbatch {{path/to/job.sh}}`
- 提交带有自定义名称的批处理作业:
`sbatch --job-name={{myjob}} {{path/to/job.sh}}`
- 提交一个时间限制为 30 分钟的批处理作业:
`sbatch --time={{00:30:00}} {{path/to/job.sh}}`
- 提交一个作业并请求多个节点:
`sbatch --nodes={{3}} {{path/to/job.sh}}`