sungridengine - Silently submit a job with qsub to SGE -
i have bash script submits hundreds of jobs using qsub
responding sge queue (it takes second each job id show up).
in order bypass time consuming process , not kill script when quit shell, run script background job appending &
. while saves me half hour @ times, job id's still appear , mess command prompt.
i wondering if possible suppress display of job id's or in way silently submit jobs queue. though, link talks of -z
argument, doesn't work nor there mention of on qsub
man page.
thanks!
better solution: instead of using '&' use gnu screen create session, submit job , leave session: http://www.gnu.org/software/screen/ .
then, @ time, can create new (full-screen) windows other programs in them (including more shells), kill current window, view list of active windows, turn output logging on , off, copy text between windows, view scrollback history, switch between windows, etc. windows run programs independent of each other. programs continue run when window not visible , when whole screen session detached users terminal.
Comments
Post a Comment