gpt4 book ai didi

awk - 如何使用 awk 重命名重复行?

转载 作者:行者123 更新时间:2023-12-02 04:21:43 27 4
gpt4 key购买 nike

我有一个包含 100 万行的文件,其中一些行是重复的。我想通过附加“variant”+一个数字来重命名重复的行。该文件的格式如下:

I am a test line
She is beautiful
need for speed
Nice day today
I am a test line
stack overflow is fun
I am a test line
stack overflow is fun
I have more sentences
I am a test line
She is beautiful
Speed for need
stack overflow is fun
Let's stop here

期望的结果:

    I am a test line
She is beautiful
need for speed
Nice day today
I am a test line variant 1
stack overflow is fun
I am a test line variant 2
stack overflow is fun variant 1
I have more sentences
I am a test line variant 3
She is beautiful variant 1
Speed for need variant 1
stack overflow is fun variant 2
Let's stop here

最佳答案

$ awk 'cnt[$0]++{$0=$0 " variant " (cnt[$0]-1)} 1' file
I am a test line
She is beautiful
need for speed
Nice day today
I am a test line variant 1
stack overflow is fun
I am a test line variant 2
stack overflow is fun variant 1
I have more sentences
I am a test line variant 3
She is beautiful variant 1
Speed for need
stack overflow is fun variant 2
Let's stop here

关于awk - 如何使用 awk 重命名重复行?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/29977511/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com