Exercises
Quiz 1
What is possibly wrong with this job?
#!/bin/bash
#$ -cwd
#$ -l h_rt=8:00:00,h_data=16g
#$ -pe shared 16
#$ -o stdout.$JOB_ID
#$ -j y
#....
Quiz 2
What is possibly wrong with this job?
#!/bin/bash
#$ -cwd
#$ -l h_rt=8:00:00,h_data=2g
#$ -pe shared 64
#$ -j y
#$ -o stdout.$JOB_ID
# ....