1 #!/bin/bash 2 case $1 in 3 "start") 4 /opt/module/hbase/bin/start-hbase.sh 5 ;; 6 "stop") 7 /opt/module/hbase/bin/stop-hbase.sh 8 ;; 9 "shell") 10 /opt/module/hbase/bin/hbase shell 11 ;; 12 esac
1 #!/bin/bash 2 case $1 in 3 "start") 4 /opt/module/hbase/bin/start-hbase.sh 5 ;; 6 "stop") 7 /opt/module/hbase/bin/stop-hbase.sh 8 ;; 9 "shell") 10 /opt/module/hbase/bin/hbase shell 11 ;; 12 esac