我正在尝试在列中最后一个重复的字符串之后添加换行符。这是我需要调整自己经常使用的命令输出的步骤之一,以使您的眼睛更加舒缓。
例如。我安排的输出当前为这种形式:
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是我的朋友。朝着正确方向提供的任何帮助均深表感谢。
谢谢。
假设文件按第三列排序,则可以使用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
$
版权声明:本文内容由阿里云实名注册用户自发贡献,版权归原作者所有,阿里云开发者社区不拥有其著作权,亦不承担相应法律责任。具体规则请查看《阿里云开发者社区用户服务协议》和《阿里云开发者社区知识产权保护指引》。如果您发现本社区中有涉嫌抄袭的内容,填写侵权投诉表单进行举报,一经查实,本社区将立刻删除涉嫌侵权内容。