menu

Job submission

Submit the job script to the scheduler as below.

% qsub -q <Queue> <Script>

Job submission (with mail notification)

Notification of the starting / ending the job can be requested as below,

% qsub -q <Queue> -M <mail address> -m be <Script>

-M <contact email>
-m be                       # b -> begin(Job starting) , e -> end(Job ending)

Job deletion

Only the owner of the job can delete his already submitted jobs

% qdel <Job id>