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
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:06qsub; are you referring to this one? – Keith Thompson Jan 16 at 6:10