#!/bin/bash

if echo -e "exists 'HostApplicationMap_Ver2'" | ${HBASE_HOME}/bin/hbase shell 2>&1 | grep -q "does exist" 2>/dev/null
then 
    echo "Tables already exist"
else
    sleep 15        
    echo "create tables"
    ${HBASE_HOME}/bin/hbase shell ${BASE_DIR}/hbase-create.hbase
fi