#!/bin/sh

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

if [ "x$1" = "x" ]  || [ "$1" = "-help" ] || [ "$1" = "-h" ];
	then echo "fkill kills the job"
	echo "fkill <job_id>"
else
   $CLIENT $HOST $PORT command kill $1 
fi
	
