hive输出结果显示标题:set hive.cli.print.header=true;
hive选出某一字段之外的所有字段:select `(column)?+.+` from tablename;
(选出除column之外的所有字段,Hive 0.13.0之后,select支持正则表达式)
Linux下自动执行脚本:使用corntab相关命令
Linux时间参数:date +"balalala", +表示向date函数传参,如果想要得到的时间参数带有其他字符如空格,逗号什么的,要给表示时间的参数如%Y %m %d加上“ ”渲染成一个字符串
输出日志信息写入nohup.out文件:nohup sh abc.sh &