#!/bin/bash


if [ ! -n "$1" ]
then
  echo "usage: `basename $0` jarFile [x]"
  echo "x - display contents of service.xml"
  exit 1
fi  

$JAVA -cp $SIAM_CLASSPATH moos.operations.utils.JarViewer $*

