#!/bin/sh
for each in $(ls *.jar)
do
	CP=$CP:$each
done
java -cp $CP:. moos.operations.portal.AUVPortalService $1 $2
