skip> Is it possible to make one job dependent on the completion of one skip> or more other jobs? I think I found it: id1=$(qsub ...) id2=$(qsub ...) ... qsub -W depend=afterok:$id1:$id2:... ... S