diff --git a/shell/pipelineJobs.csh b/shell/pipelineJobs.csh new file mode 100755 index 000000000..85b870526 --- /dev/null +++ b/shell/pipelineJobs.csh @@ -0,0 +1,8 @@ +echo "Running" +bjobs -u gsaadm -r | grep gsaadm | awk '{print $4}' | sort | uniq -c + +echo "Pending" +bjobs -u gsaadm -p | grep gsaadm | awk '{print $4}' | sort | uniq -c + +echo "Suspended" +bjobs -u gsaadm -s | grep gsaadm | awk '{print $4}' | sort | uniq -c