#!/bin/sh
JACKTRIP=$(pwd)/src/jacktrip
case "$1" in
  -h|--help)
    ${JACKTRIP} -h 2>&1 | sed -e '0,/^-[-]*-$/d' -e '/^==*=$/d'
    ;;
  *)
    ${JACKTRIP} $@
    ;;
esac
