First create a stream using:
./createStream.sh /abcsrc
./createStream.sh /abcdst

If you want to specify a number of partitions while creating the stream:
./createStream.sh /abcsrc 10
./createStream.sh /abcdst 10

Now setup replication using:
./replStream.sh /abcsrc /abcdst

Run producer.  You can run multiple producers by running the same command on multiple prompts.
./producer.sh -path /abcsrc:gold,/abcsrc:silver -producerConfig producer.config

Run consumers on the same stream.  Run the same command on multiple prompts to have consumer group.
./consumer.sh -path /abcsrc:* -consumerConfig consumer.config.analyzer

Run consumers on the replica stream.
./consumer.sh -path /abcdst:* -consumerConfig consumer.config.freq

Delete streams once we are done (if you want to).
./deleteStream.sh /abcsrc
./deleteStream.sh /abcdst