#!/bin/bash

if [ ! -n "$1" ]
then
  echo "usage: `basename $0` nodeURL"
  exit 1
fi  

nodeURL=$1

# Script executes moos.deployed.NodeTest.main()
$JAVA -cp $SIAM_CLASSPATH -Djava.security.policy=$SIAM_HOME/properties/policy \
-Dlog4j.threshold=$LOG4J_THRESHOLD \
moos.operations.utils.ListNodeSwitches $nodeURL

