diff --git a/bin/hbase b/bin/hbase index f0c0c75fbdf..7b0d97bb0dc 100755 --- a/bin/hbase +++ b/bin/hbase @@ -83,6 +83,7 @@ if [ $# = 0 ]; then echo " shell Run the HBase shell" echo " hbck Run the hbase 'fsck' tool" echo " snapshot Create a new snapshot of a table" + echo " snapshotinfo Tool for dumping snapshot information" echo " wal Write-ahead-log analyzer" echo " hfile Store file analyzer" echo " zkcli Run the ZooKeeper shell" @@ -307,6 +308,8 @@ elif [ "$COMMAND" = "upgrade" ] ; then CLASS="org.apache.hadoop.hbase.migration.UpgradeTo96" elif [ "$COMMAND" = "snapshot" ] ; then CLASS="org.apache.hadoop.hbase.snapshot.CreateSnapshot" +elif [ "$COMMAND" = "snapshotinfo" ] ; then + CLASS="org.apache.hadoop.hbase.snapshot.SnapshotInfo" elif [ "$COMMAND" = "master" ] ; then CLASS='org.apache.hadoop.hbase.master.HMaster' if [ "$1" != "stop" ] && [ "$1" != "clear" ] ; then