#!/bin/bash

JAVA_CMD="java -Xmx3g -Xss512m -jar t3q.jar"

if [[ $# > 0 && $1 == "--echo" ]]; then
	echo $JAVA_CMD
else
	$JAVA_CMD "$@"
fi

