diff options
| author | Dave Tang <davetingpongtang@gmail.com> | 2026-06-22 20:12:06 +0900 |
|---|---|---|
| committer | Dave Tang <davetingpongtang@gmail.com> | 2026-06-22 20:12:06 +0900 |
| commit | 319f10b1f20170adf7efa05938b6bb23584c4729 (patch) | |
| tree | f3a680d1a91c232f4b71912dbca4581056ad8477 /examples/sge/job1.sh | |
GNU Make notes
Diffstat (limited to 'examples/sge/job1.sh')
| -rwxr-xr-x | examples/sge/job1.sh | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/examples/sge/job1.sh b/examples/sge/job1.sh new file mode 100755 index 0000000..4c72eb2 --- /dev/null +++ b/examples/sge/job1.sh @@ -0,0 +1,14 @@ +#!/usr/bin/env bash +#$ -S /bin/bash +#$ -N job1 +#$ -q all.q +#$ -cwd +#$ -l h_rt=01:00:00 +#$ -l h_rss=30720M,mem_free=30720M +#$ -j y +#$ -o job1.log + +export LANGUAGE=en_AU.UTF-8 + +sleep 10 +echo job1 > 1.txt |
