Top "Qsub" questions

Qsub is a job submission command for high performance computing jobs.

Argument passing in .sh scripts

I have a shell script foo.sh which is a qsub job with content: #!/bin/bash -l #$ -S /bin/bash #$ …

shell parameter-passing options sh qsub
how to specify error log file and output file in qsub

I have a qsub script as #####----submit_job.sh---##### #!/bin/sh #$ -N job1 #$ -t 1-100 #$ -cwd SEEDFILE=/home/user1/data1 …

bash cluster-computing qsub sungridengine
Wait for set of qsub jobs to complete

I have a batch script which starts off a couple of qsub jobs, and I want to trap when they …

qsub
parameter for shell scripts that is started with qsub

how can I parametrize a shell script that is executed on a grid (started with qsub) ? I have a shell …

linux shell grid-computing qsub
'Unexpected end of file' and 'error importing function definition' error running shellscript using qsub

I have the following shellscript: #!/bin/sh cd /sw/local/bin/ export LD_LIBRARY_PATH=/sw/local/lib:/usr/local/…

linux shell cluster-computing qsub
Does qsub pass command line arguments to my script?

When I submit a job using qsub script.sh is $@ setted to some value inside script.sh? That is, are …

pbs qsub torque
How to Pass Parameters from QSub to Bash Script?

I'm having an issue passing variables to a Bash script using QSub. Assume I have a Bash script named example. …

parameter-passing qsub
excluding nodes from qsub command under sge

I have more than 200 jobs I need to submit to and sge cluster. I'll be submitting them into two ques. …

nodes qsub sungridengine
os.system vs subprocess in python on linux

I have two python scripts. The first script calls a table of second scripts in which I need to execute …

python linux qsub
How can I use a pipe or redirect in a qsub command?

There are some commands I'd like to run on a grid using qsub (SGE 8.1.3, CentOS 5.9) that need to use a …

linux pipe qsub grid-computing sungridengine