From 319f10b1f20170adf7efa05938b6bb23584c4729 Mon Sep 17 00:00:00 2001 From: Dave Tang Date: Mon, 22 Jun 2026 20:12:06 +0900 Subject: GNU Make notes --- examples/sge/job2.sh | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100755 examples/sge/job2.sh (limited to 'examples/sge/job2.sh') diff --git a/examples/sge/job2.sh b/examples/sge/job2.sh new file mode 100755 index 0000000..fcd80d7 --- /dev/null +++ b/examples/sge/job2.sh @@ -0,0 +1,15 @@ +#!/usr/bin/env bash +#$ -S /bin/bash +#$ -N job2 +#$ -q all.q +#$ -cwd +#$ -l h_rt=01:00:00 +#$ -l h_rss=30720M,mem_free=30720M +#$ -j y +#$ -o job2.log + +export LANGUAGE=en_AU.UTF-8 + +sleep 10 +cat 1.txt > 2.txt +echo job2 >> 2.txt -- cgit v1.3.1