Skip to content

Commit

Permalink
[docs] Fix netcat arguments in Setup quickstart
Browse files Browse the repository at this point in the history
This closes apache#1781.
  • Loading branch information
zitterbewegung authored and uce committed Mar 11, 2016
1 parent 3bbe59c commit d0a390f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions docs/quickstart/setup_quickstart.md
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ Now, we are going to run the [SocketTextStreamWordCount example](https://github.
* First of all, we use **netcat** to start local server via

~~~bash
$ nc -l -p 9000
$ nc -l 9000
~~~

* Submit the Flink program:
Expand Down Expand Up @@ -94,7 +94,7 @@ Now, we are going to run the [SocketTextStreamWordCount example](https://github.
* Counts are printed to `stdout`. Monitor the JobManager's output file and write some text in `nc`:

~~~bash
$ nc -l -p 9000
$ nc -l 9000
lorem ipsum
ipsum ipsum ipsum
bye
Expand Down

0 comments on commit d0a390f

Please sign in to comment.