source: testjobs/job @ 12

Last change on this file since 12 was 12, checked in by willem, 11 years ago

willem

File size: 355 bytes
Line 
1#PBS -lnodes=1 -lwalltime=3000
2module load stopos
3cd ${PBS_O_WORKDIR:-.}
4mkdir -p out
5for i in `seq 16` ; do
6  (
7  for j in `seq 10`; do
8    while true ; do
9      stopos next -p pool$j
10      if [ "$STOPOS_RC" != "OK" ] ; then
11        break
12      fi
13      echo "$STOPOS_VALUE" >> out/$j.$i.$PBS_JOBID
14      stopos remove -p pool$j
15    done
16  done
17  ) &
18done
19wait
Note: See TracBrowser for help on using the repository browser.