Add missing backslash (#4474)

There're missing backslash when running the quick start tutorial.

Reviewers: Guozhang Wang <wangguoz@gmail.com>
This commit is contained in:
Yu-Jhe 2018-01-27 02:14:10 +08:00 committed by Guozhang Wang
parent c615c597aa
commit decfb834fb
1 changed files with 3 additions and 3 deletions

View File

@ -219,7 +219,7 @@ This message will be processed by the Wordcount application and the following ou
</p>
<pre class="brush: bash;">
&gt; bin/kafka-console-consumer.sh --bootstrap-server localhost:9092
&gt; bin/kafka-console-consumer.sh --bootstrap-server localhost:9092 \
--topic streams-wordcount-output \
--from-beginning \
--formatter kafka.tools.DefaultMessageFormatter \
@ -252,7 +252,7 @@ hello kafka streams
In your other terminal in which the console consumer is running, you will observe that the WordCount application wrote new output data:
<pre class="brush: bash;">
&gt; bin/kafka-console-consumer.sh --bootstrap-server localhost:9092
&gt; bin/kafka-console-consumer.sh --bootstrap-server localhost:9092 \
--topic streams-wordcount-output \
--from-beginning \
--formatter kafka.tools.DefaultMessageFormatter \
@ -287,7 +287,7 @@ join kafka summit
The <b>streams-wordcount-output</b> topic will subsequently show the corresponding updated word counts (see last three lines):
<pre class="brush: bash;">
&gt; bin/kafka-console-consumer.sh --bootstrap-server localhost:9092
&gt; bin/kafka-console-consumer.sh --bootstrap-server localhost:9092 \
--topic streams-wordcount-output \
--from-beginning \
--formatter kafka.tools.DefaultMessageFormatter \