You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I am using the script contribs/torque/qsub.pl to submit a job to a specific node:
qsub -l nodes=foo-bar foo.sh
However, the node name, which contains a dash, is not recognized by the qsub script.
The problem lies in Line 244:
($opt{$key}) = $rl =~ m/$key=([\w:+=+]+)/;
The character class (enclosed in brackets) in the regexp doesn't include the dash.
Since node names with dashes are not uncommon, I would appreciate it if you could add - to the character class in the regexp.
The text was updated successfully, but these errors were encountered:
I am using the script contribs/torque/qsub.pl to submit a job to a specific node:
qsub -l nodes=foo-bar foo.sh
However, the node name, which contains a dash, is not recognized by the qsub script.
The problem lies in Line 244:
($opt{$key}) = $rl =~ m/$key=([\w:+=+]+)/;
The character class (enclosed in brackets) in the regexp doesn't include the dash.
Since node names with dashes are not uncommon, I would appreciate it if you could add - to the character class in the regexp.
The text was updated successfully, but these errors were encountered: