//获取输入内容 #!/bin/bash echo "What is your name?" read PERSON read -p "who are you name: " name //-p后面的内容是提示信息 echo "Hello, $PERSON" echo "my name is: $name" //变量 #!/bin/bash myUrl="http://see.xidian.edu.cn/cpp/sh…
前言 大数据的基础离不开Hbase, 本文就hbase的基础概念,特点,以及框架进行简介, 实际操作种需要注意hbase shell的使用. Hbase 基础 官网:https://hbase.apache.org/ Apache HBase™ is the Hadoop database, a distributed, scalable, big data store. Use Apache HBase™ when you need random, realtime read/write a…