how can I parametrize a shell script that is executed on a grid (started with qsub) ? I have a shell script, where I use getopts to read the parameters.

When I start (qsub script.sh -r firstparam -s secondparam ..) this working script with qsub I receive error messages,

qsub: invalid option -- s

qsub: illegal -r value

as qsub thinks the parameter are for itself. Yet I have not found any solution.

Thanks

link|improve this question
I just figured out how to solve it: just print the commands of the shell scrip with echo and pipe the result to qsub: ./script.sh | qsub – Martin Aug 17 '10 at 15:34
You should post your solution as an answer. Then come back and mark it accepted. By the way, did you try quoting the argument to qsub? qsub 'script.sh -r firstparam -s secondparam' I have no idea if that works in this case. – Dennis Williamson Aug 17 '10 at 19:06
This did not work in my case – Martin Sep 1 '10 at 13:26
I've seen more than one command named qsub; are you referring to this one? – Keith Thompson Jan 16 at 6:10
feedback

2 Answers

up vote 2 down vote accepted

I just figured out how to solve it: just print the commands of the shell scrip with echo and pipe the result to qsub:

echo "./script.sh var1=13 var2=24" | qsub

link|improve this answer
your answer needs to be more explicit - come up with an example – Jeremy Leipzig Nov 23 '10 at 15:41
feedback

Using the qsub -v option is the proper way:

qsub -v par_name=par_value[,par_name=par_value...] script.sh

par_name can be used as variable in the shell script.

link|improve this answer
Thanks for your suggestion! In my opinion the problem with this approach is the difference of the parameter handling for the use of one application as standalone or distributed app. Therefore I prefer the style described above. – Martin Jan 21 '11 at 10:41
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.