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/job3.sh | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100755 examples/sge/job3.sh (limited to 'examples/sge/job3.sh') diff --git a/examples/sge/job3.sh b/examples/sge/job3.sh new file mode 100755 index 0000000..7243049 --- /dev/null +++ b/examples/sge/job3.sh @@ -0,0 +1,15 @@ +#!/usr/bin/env bash +#$ -S /bin/bash +#$ -N job3 +#$ -q all.q +#$ -cwd +#$ -l h_rt=01:00:00 +#$ -l h_rss=30720M,mem_free=30720M +#$ -j y +#$ -o job3.log + +export LANGUAGE=en_AU.UTF-8 + +sleep 10 +cat 2.txt > 3.txt +echo job3 >> 3.txt -- cgit v1.3.1