mirror of
https://github.com/tldr-pages/tldr.git
synced 2025-04-29 23:24:55 +02:00

* linux/s*: add Korean translation * systemctl: update Korean translation * Update pages.ko/linux/sqfscat.md Co-authored-by: Chooooo <contact@choo.ooo> * Update pages.ko/linux/shar.md Co-authored-by: Chooooo <contact@choo.ooo> * Update pages.ko/linux/sqfstar.md Co-authored-by: Chooooo <contact@choo.ooo> * shnsplit: fix typo * semanage: update Korean translation --------- Co-authored-by: Chooooo <contact@choo.ooo>
20 lines
495 B
Markdown
20 lines
495 B
Markdown
# sbatch
|
|
|
|
> SLURM 스케줄러에 배치 작업 제출.
|
|
> 더 많은 정보: <https://manned.org/sbatch>.
|
|
|
|
- 배치 작업 제출:
|
|
|
|
`sbatch {{경로/대상/작업.sh}}`
|
|
|
|
- 사용자 지정 이름으로 배치 작업 제출:
|
|
|
|
`sbatch --job-name={{myjob}} {{경로/대상/작업.sh}}`
|
|
|
|
- 30분의 시간 제한으로 배치 작업 제출:
|
|
|
|
`sbatch --time={{00:30:00}} {{경로/대상/작업.sh}}`
|
|
|
|
- 여러 노드를 요청하여 작업 제출:
|
|
|
|
`sbatch --nodes={{3}} {{경로/대상/작업.sh}}`
|