1 #!/bin/bash 2 case $1 in 3 "port"){ 4 /opt/module/flume/bin/flume-ng agent --conf /opt/module/flume/conf/ --name a1 --conf-file /opt/module/flume/job/flume-netcat-logger.conf -D flume.root.logger=INFO,console 5 };; 6 "file"){ 7 /opt/module/flume/bin/flume-ng agent --conf /opt/module/flume/conf/ --name a2 --conf-file /opt/module/flume/job/flume-file-hdfs.conf 8 };; 9 esac