#!/bin/sh

CLIENT=/Home/p1/sameer/charm/net-sol/pgms/scheduler/client
HOST=localhost
PORT=7999

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
	
