#!/bin/bash

if [ -z "$GEXT_MARS" ] ; then
  echo "Environment variable GEXT_MARS is not set."
  echo "Have you sourced setup.bash?"
  exit -1
fi

( cd "$GEXT_MARS/lib/python" && \
  python ./pessentia.py $* )



