#!/bin/sh

CLIENT=/home/net/skumar2/charm/net-linux/pgms/scheduler/client
HOST=localhost
PORT=7000

if [ "$1" = "-help" ] || [ "$1" = "-h" ];
    then echo "fjobs displays the status of the current jobs in the system, both running and scheduled";
else $CLIENT $HOST $PORT command listjobs
fi
	
