From 0e089ce0b74050ea4cf5fab2058104fb57a958e8 Mon Sep 17 00:00:00 2001 From: depristo Date: Sun, 9 Jan 2011 13:09:30 +0000 Subject: [PATCH] watch -n 30 shell/pipelineJobs.csh for those who want to watch the gsaadm's jobs progress git-svn-id: file:///humgen/gsa-scr1/gsa-engineering/svn_contents/trunk@4966 348d0f76-0448-11de-a6fe-93d51630548a --- shell/pipelineJobs.csh | 8 ++++++++ 1 file changed, 8 insertions(+) create mode 100755 shell/pipelineJobs.csh 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