grepsed和awk等方法实现行转列

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了grepsed和awk等方法实现行转列相关的知识,希望对你有一定的参考价值。

[[email protected]~]# cat file
1 2 3
4 5 6
7 8 9

[[email protected]~]# cat file |xargs -n1
[[email protected]~]# xargs -n 1 <file
[[email protected]~]# tr " " "\n" <file
[[email protected]~]# sed ‘s/ /\n/g‘ file
[[email protected]~]# grep -oP ‘\S+‘ file
[[email protected]~]# awk ‘{for(i=1;i<=NF;i++)print $i}‘ file
[[email protected]~]# awk -vOFS="\n" ‘$1=$1‘ file
[[email protected]~]# awk ‘{OFS=RS}NF=NF‘ file
1
2
3
4
5
6
7
8
9


本文出自 “卡卡西” 博客,请务必保留此出处http://whnba.blog.51cto.com/1215711/1853501

以上是关于grepsed和awk等方法实现行转列的主要内容,如果未能解决你的问题,请参考以下文章

SQL Server 动态行转列(参数化表名分组列行转列字段字段值)

SQL Server 动态行转列(参数化表名分组列行转列字段字段值)

mysql行转列转换

SQL sql语句实现行转列的3种方法

Linux命令之grep/sed/awk等行转列

SQLSERVER有张表,需要每晚自动实现行转列。