Versions Compared

Key

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

...

I have many jobs running and pending, how do I kill off only the pending jobs?
-bash-3.2$ > bjobs | awk '$3=="PEND" {print $1}' | xargs bkill

Here is another approach:
> bkill ` bjobs -u username |grep PEND |cut -f1 -d" "`

I have subitted many jobs and don't recall which queues I used, how do I find out the status?
> qstat -u your_tufts_utln

...