如何在特定列中的最后一个重复的字符串之后添加换行符

时间:2019-03-20 19:36:03

标签: linux bash awk sed grep

我正在尝试在列中最后一个重复的字符串之后添加换行符。这是我需要调整自己经常使用的命令输出的步骤之一,以使您的眼睛更加舒缓。

例如。我安排的输出当前为这种形式:

10.12   null   machineA
19.13   null   machineA
12.11   null   machineA
12.13   null   machineB
14.14   null   machineB
11.17   null   machineC
17.13   null   machineC
16.16   null   machineC

我想将输出显示为:

10.12   null   machineA
19.13   null   machineA
12.11   null   machineA

12.13   null   machineB
14.14   null   machineB

11.17   null   machineC
17.13   null   machineC
16.16   null   machineC

我认为sed或awk是我的朋友。在正确方向上的任何帮助都将受到赞赏。

谢谢。

1 个答案:

答案 0 :(得分:-1)

假设文件按第三列排序,则可以使用prev和curr变量并打印结果

 awk ' { c=$3; if(c!=p && NR>1) { print "" } print ; p=c } ' file 

使用您给定的输入

$ cat kalam.txt
10.12   null   machineA
19.13   null   machineA
12.11   null   machineA
12.13   null   machineB
14.14   null   machineB
11.17   null   machineC
17.13   null   machineC
16.16   null   machineC

$ awk ' { c=$3; if(c!=p && NR>1) { print "" } print ; p=c } ' kalam.txt
10.12   null   machineA
19.13   null   machineA
12.11   null   machineA

12.13   null   machineB
14.14   null   machineB

11.17   null   machineC
17.13   null   machineC
16.16   null   machineC

$