Pages

Showing posts with label multiple jobs. Show all posts
Showing posts with label multiple jobs. Show all posts

Running multiple jobs with qsub with uniqe names.

I have a PBS script to run jobs. The name is specified by #PBS -N tag.

But, if you want to run a number of files (100s, 1000s), it may be tedious to edit submit-jobs file for each file. Instead one can use this onliner to assign name to each jobs.

For example,

#For foo_bar_abc_1_01_geh_file.in, the Job Name should be test01, 
#For foo_bar_abc_1_02_geh_file.in, the Job Name should be test02, 
#For foo_bar_abc_1_100_geh_file.in, the Job Name should be test100,
   etc.

for f in foo*.in; do qsub -N test$(echo $f|cut -d_ -f5) -v infile=$f run.pbs; done

You may be interested in these posts

Error in image file conversion: convert-im6.q16: not authorized `test.eps' @ error/constitute.c/WriteImage/1037.

This error is because of the vulnerability. This allows remote execution of code using image formats. So, some Linux distributions by defaul...