#!/bin/bash
OUTPUT_FILE=/home/cluster/clustering/EIA-output/inputProcessor.out.txt
JAR_LOCATION=/home/cluster/jars
export CLASSPATH=.:$JAR_LOCATION/InputProcessor-11.05.03.jar:$JAR_LOCATION/xercesImpl.jar:$JAR_LOCATION/xmlParserAPIs.jar
echo "Using classpath: $CLASSPATH"
java -Xmx1024m idl.cluster.InputProcessor -c /home/cluster/clustering/config/eia-processing-conf.xml &> $OUTPUT_FILE &
echo "Output in $OUTPUT_FILE"
tail -f $OUTPUT_FILE


