-
Notifications
You must be signed in to change notification settings - Fork 0
/
examples.tar
32 lines (24 loc) · 10 KB
/
examples.tar
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
examples/ 0000775 0001750 0001750 00000000000 12633071615 011054 5 ustar swc swc examples/helloworld.pbs 0000664 0001750 0001750 00000001216 12633317260 013734 0 ustar swc swc #!/bin/bash
# This is a comment that is just for humans to read
# Lines starting with #PBS are instructions to the scheduler
# Select the queue you want:
#PBS -q express
# Request the number of nodes and the number of
# processors per node
#PBS -l nodes=1:ppn=1
# Request the maximum time that your job could possibly need
#PBS -l walltime=10:00
# This line puts all the output that would have gone to the screen
# into a single file. Some schedulers do this by default.
#PBS -j oe
# This makes sure your job starts in the same directory as
# where you submitted the job.
cd $PBS_O_WORKDIR
# This is the command to run a job
./helloworld.sh