Hi,

I am trying to submit a job to a different node/machine using QProcess. The command is like:

qsub -r y -b y -cwd -sync y -notify -l hostkey="b019[0-8][0-9]" -t 1-1 "convert_data file1 file2"
In the above command, qsub is to submit a job in a node defined by a range nodes "b019[0-8][0-9]", and the real command is "convert_data file1 file2"

How can I use QProcess in this case?

Thanks