How can I get qstat to give me full job names?
qstat
I know qstat -r gives detailed information about the task, but it\'s too much and the resource r
qstat -r
Maybe an easier solution: set SGE_LONG_JOB_NAMES to -1, and qstat will figure out the size of the name column:
export SGE_LONG_JOB_NAMES=-1 qstat -u username
Works for me.
Cheers!