#!/bin/bash

# Show all schedules
if [ ! -n "$1" ]
then
  echo
  echo "usage: `basename $0` nodeURL [port [lookAheadMillis]]..."
  echo 
  exit 1
fi  

nodeURL=$1
lookAhead=$2


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

