mirror of
https://github.com/apache/druid.git
synced 2025-02-09 03:24:55 +00:00
11 lines
140 B
Bash
11 lines
140 B
Bash
#!/bin/bash -eu
|
|
|
|
usage="Usage: historical.sh (start|stop)"
|
|
|
|
if [ $# -lt 1 ]; then
|
|
echo $usage
|
|
exit 1
|
|
fi
|
|
|
|
sh ./bin/node.sh historical $1
|