parameter for shell scripts that is started with qsub

后端 未结 4 697
梦谈多话
梦谈多话 2020-12-12 22:21

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

4条回答
  •  感动是毒
    2020-12-12 22:43

    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.

提交回复
热议问题