Versions Compared

    Key

    • This line was added.
    • This line was removed.
    • Formatting was changed.

    ...

    Using the waitfor option:
    % qbsub --name jobA sleep 60 
    (this creates job 220)
    % qbsub --name jobB --waitfor 220 sleep 60

    Using the dependency option:
    % qbsub --name jobA sleep 60 
    (this creates job 220)
    % qbsub --name jobB --dependency link-complete-job-220 sleep 60

    ...