Skip to content

Instantly share code, notes, and snippets.

@Mahdisadjadi
Created March 13, 2016 04:52
Show Gist options
  • Save Mahdisadjadi/f99cd9ef2aaa5ce3131c to your computer and use it in GitHub Desktop.
Save Mahdisadjadi/f99cd9ef2aaa5ce3131c to your computer and use it in GitHub Desktop.
Stop all running jobs on the cluster
## Find all running jobs, take their JOB ID and delete them.
qstat | awk -F " " '{print $1}' | xargs qdel
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment