diff options
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 |
