Github user tbouron commented on a diff in the pull request:
https://github.com/apache/brooklyn-docs/pull/266#discussion_r213967673
--- Diff: guide/blueprints/example_yaml/vanilla-bash-netcat-w-client.yaml
---
@@ -66,7 +66,7 @@ services:
name: sayHiNetcat
description: Echo a small hello string to the netcat entity
command: |
- echo $message | nc $TARGET_HOSTNAME 4321
+ echo $message | nc -N $TARGET_HOSTNAME 4321
--- End diff --
Yeah, or just add a note at the bottom to say that for MacOS, you need to
remove `-N` ð
---