#!/bin/bash

if [ ! -n "$1" ]
then
  echo
  echo "usage: `basename $0` nodeURL <lookAheadSeconds>"
  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 \
moos.operations.utils.ShowSchedule $nodeURL $lookAhead

