命令行界面CLI

时间:2022-12-27 22:12:52

1.hive   -e --执行一个或多个查询

hive -e "select * from student limit 3"

2. hive -e     > 将临时查询保存到文件中

hive -e "select * from student limit 3" > /tmp/myquery  

cat  /tmp/myquery

name1 10

name2 20

3.hive -f +文件名  执行指定文件中的查询

hive -f /path/to/file/withqueries.hsql

cat /path/to/file/withqueries.hsql

select * from student;

4.source --执行脚本

source /path/to/file/withqueries.hsql

5. 执行shell命令 --只要在命令前加上!并且以!结尾

!pwd ;