ganeshran
ganeshran

Reputation: 3512

Pipe Symbol in qsub Job name

Is a pipe symbol allowed in SunGridEngine job name? I found a few reference stating not to use special characters in the name but I'm not sure if pipe symbol is part of the list.

Upvotes: 0

Views: 78

Answers (1)

Finch_Powers
Finch_Powers

Reputation: 3106

I just tried with OGS (descendant of SGE) and it works fine so I'm pretty sure it works in SGE as well. Make sure to enclose the job name into single quotes if you are trying this from the shell.

%> qsub -N 'co|co' -b y test.sh
Your job 438421 ("co|co") has been submitted

Upvotes: 1

Related Questions