#!/bin/sh

export MEE_ROOT=/opt/meecolay

. $MEE_ROOT/env.sh

if [ $# -ge 1 ]; then
	exec "$@"
else
	exec sh
fi

