#!/bin/sh
# A wrapper arround DCA that set DCA_COST_DIR, 
# extends PATH environment and call
export DCA_COST_DIR=
if [ -z $DCA_COST_DIR ]; then 
    echo "ERROR : Please define \$DCA_COST_DIR within Shell Wrapper '$0'";
    exit;
fi;    
export PATH=$PATH:`dirname $0`
$0.bin $@