pl:info:batch_file
Differences
This shows you the differences between two versions of the page.
Both sides previous revisionPrevious revision | |||
pl:info:batch_file [2024/12/06 02:05] – removed - external edit (Unknown date) 127.0.0.1 | pl:info:batch_file [2024/12/06 02:05] (current) – ↷ Page moved from info:batch_file to pl:info:batch_file mkadlof | ||
---|---|---|---|
Line 1: | Line 1: | ||
+ | ====== Pliki wsadowe ====== | ||
+ | Przykładowe pliki wsadowe | ||
+ | <code bash> | ||
+ | #!/bin/bash | ||
+ | #SBATCH --job-name=moj_super_skrypt | ||
+ | #SBATCH --mail-type=END, | ||
+ | #SBATCH --mail-user=email@ufl.edu | ||
+ | #SBATCH --ntasks=1 | ||
+ | #SBATCH --mem=1gb | ||
+ | #SBATCH --time=00: | ||
+ | #SBATCH --output=moj_skrypt_%j.log | ||
+ | |||
+ | pwd; hostname; date | ||
+ | |||
+ | echo " | ||
+ | |||
+ | python my_super_script.py | ||
+ | |||
+ | date | ||
+ | </ |