Código de retorno System.exit não é detectado por bash eval

lutando com isso por uma hora ... código java:

ULogger.info("throwing out 666!");
System.exit(666);

wrapper bash:

eval ${COMMAND_TO_RUN}
ret_code=$?
printf "error code : [%d]" ${ret_code}

saída:

[2012-11-30 15:20:12,971][INFO ] throwing out 666!
error code : [0]

qual é o problema aqui? Obrigado...

[EDITAR]

o${COMMAND_TO_RUN} é

((java -Xmx9000m -Dtoday_nix=20121128 -cp "/usr/lib/hadoop/conf" com.paypal.risk.ars.linking.task_fw.BaseRunnableProcess 3>&1 1>&2 2>&3) | tee /dev/tty) > batches_errors.log

questionAnswers(2)

yourAnswerToTheQuestion