Github user greggomann commented on the issue:
https://github.com/apache/mesos/pull/255
@nhandler similar to Vinod's comment: I think we could probably get away
without the heredoc notation, to get rid of the EOFs?
i.e.:
```
curl -i \
-X POST http://<masterhost>:5050/api/v1 \
-H "Content-Type: application/json" \
-H "Accept: application/json" \
-d '
{
"type": "GET_HEALTH"
}'
```
This works when I test it in bash anyway :)---
