I would like to pass variables to a csh script by using "qsub -v" command. I understand we can list the parameters-value pairs as below,
qsub -v par1=value1 par2=value2 myScript.csh
Does anyone know if the values of these parameters can be a string, a list of numerical numbers separated by comma sign or a filename ? for example, is the command below possible ?
qsub -v par1='Cassie_score' par2=cassieFile.txt par3='100,200,300,' myScript.csh
Thank you very much,