# 分割符为, file是文件
paste -d, -s file
# 使用管道,分割符为空格
cat file | paste -d " " -s -
如何在Linux中将文件或者stdin的多行合并为1行,如上所示。
[......]
# 分割符为, file是文件
paste -d, -s file
# 使用管道,分割符为空格
cat file | paste -d " " -s -
如何在Linux中将文件或者stdin的多行合并为1行,如上所示。
[......]
在MySQL中,支持\G,按照key = value的方式显示。
Hive也是支持的,只不过通过参数配置产生。
1、打印列名:
set hive.cli.print.header=true;
2、每行显示一个key、value,即\G类似的方式
set hive.cli.print.header=true;
set hive.cli.print.row.to.vertical=true;
set hive.cli.print.row.to.vertical.num=1;[......]