11 lines
194 B
Bash
Executable File
11 lines
194 B
Bash
Executable File
#! /bin/bash
|
|
|
|
#flume配置文件夹路径,注意最后没有/
|
|
BASE_DIR=$(cd $(dirname $0); cd ../conf/; pwd)
|
|
|
|
for conf_name in `ls ${BASE_DIR}`
|
|
do
|
|
${BASE_DIR}/${conf_name}/count_flume.sh
|
|
|
|
done
|