Does qsub pass command line arguments to my script?
问题 When I submit a job using qsub script.sh is $@ setted to some value inside script.sh ? That is, are there any command line arguments passed to script.sh ? 回答1: You can pass arguments to the job script using the -F option of qsub: qsub script.sh -F "args to script" or inside script.sh: #PBS -F arguments This is documented here. 回答2: On my platform the -F is not available. As a substitute -v helped: qsub -v "var=value" script.csh And then use the variable var in your script. See also the