#!/bin/bash
DIRS=(zookeeper kafka control-center c3-rock-test)

for dir in "${DIRS[@]}"
do
  pushd $dir
    ./test/stop
  popd
done
