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 star
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.