new example for pbs.
authorChris Koeritz <fred@gruntose.com>
Fri, 26 Apr 2013 23:25:01 +0000 (19:25 -0400)
committerChris Koeritz <fred@gruntose.com>
Fri, 26 Apr 2013 23:25:01 +0000 (19:25 -0400)
database/configuration/pbs/quicktest.pbs [new file with mode: 0755]
database/configuration/pbs/readme.txt [new file with mode: 0644]

diff --git a/database/configuration/pbs/quicktest.pbs b/database/configuration/pbs/quicktest.pbs
new file mode 100755 (executable)
index 0000000..e011754
--- /dev/null
@@ -0,0 +1,13 @@
+#!/bin/bash
+#PBS -l nodes=1,mem=20m
+#PBS -M my-email@whereiwork.com
+
+##PBS -l ncpus=2
+##PBS -l nodes=4
+##PBS -l select=4:ncpus=1
+
+echo here is the nodefile:
+cat $PBS_NODEFILE
+
+echo here is pbs envir variable:
+echo $PBS_ENVIRONMENT
diff --git a/database/configuration/pbs/readme.txt b/database/configuration/pbs/readme.txt
new file mode 100644 (file)
index 0000000..c3901d9
--- /dev/null
@@ -0,0 +1,6 @@
+
+this directory is related to PBS: portable batch system
+
+there is one example so far, a completely skeletal script that just
+prints out some facts about how it was run by pbs.
+