#!/bin/sh

# Lets us run an app without cd to app dir.

# 1st arg is the communication strategy
strategy=$1
shift
echo "Using communication strategy $strategy"

# 2n arg is app subdir name
app=$1
shift
echo "for application $app"

source_dir=apps/$app/java

echo sources: `find $source_dir -name \*.java`

env CLASSPATH=$source_dir scripts/unix/ix-comms-java $strategy "$@"


