gpt4 book ai didi

linux - shell 脚本 : Fuse all duplcate lines inside a file into 1

转载 作者:太空宇宙 更新时间:2023-11-04 10:17:05 25 4
gpt4 key购买 nike

这是包含重复行的示例文件:

abs
bsa
bsc
abs
bsa
bsb

输出应该是这样的(没有重复):

abs
bsa
bsc
bsb

我尝试了 uniq -u 命令,但它删除了重复的行,所以使用 sedawk 会更好吗? >?有什么建议么?

谢谢!

最佳答案

Note: 'uniq' does not detect repeated lines unless they are adjacent. You may want to sort the input first, or use 'sort -u' without 'uniq'.

sort -u yourfile

输出:

abs
bsa
bsb
bsc

关于linux - shell 脚本 : Fuse all duplcate lines inside a file into 1,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/45628065/

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