mirror of https://github.com/apache/kafka.git
6 lines
244 B
Bash
6 lines
244 B
Bash
|
#!/bin/bash
|
||
|
|
||
|
base_dir=$(dirname $0)
|
||
|
export KAFKA_OPTS="-Xmx512M -server -Dcom.sun.management.jmxremote -Dlog4j.configuration=file:$base_dir/kafka-console-consumer-log4j.properties"
|
||
|
$base_dir/kafka-run-class.sh kafka.consumer.ConsoleConsumer $@
|