#!/bin/bash

CLIENT=/Home/p1/sameer/charm/net-sol/pgms/scheduler/client
HOST=localhost
PORT=7999
DIR=$(/bin/pwd)

if [ "x$1" = "x" ]  || [ "$1" = "-help" ] || [ "$1" = "-h" ];
	then echo "fquery <program_name> <options> [<arguments>]"
	echo "Command Used by the Faucets System";
else
   $CLIENT $HOST $PORT query -pwd $DIR $*
fi
	
