需要总结ata但只能算数

发布于 2024-12-04 07:12:04 字数 727 浏览 1 评论 0原文

我得了流感,但这不是借口。我对此感到疯狂(我确信解决方案很简单)。我得到这个输入文件,

491 Reynosa
639 JGS-Memphis
  5 JGS-Memphis
480 Reynosa
247 JGS-Memphis
556 Reynosa
 71 JGS-Memphis
993 Reynosa
  5 JGS-Memphis
773 Reynosa
 63 JGS-Memphis
589 Reynosa
809 Reynosa
671 Reynosa
397 Reynosa
402 Reynosa
160 Reynosa
612 Reynosa
658 Reynosa
549 Reynosa
691 Reynosa
782 Reynosa
579 Reynosa

我需要进行计数,但我的代码...

    awk -F" " '{counts[$2]=counts[$2]+1}    END     {for (key in counts)         
printf "%s\t%d\n", key, counts[key]}    ' inputfile.txt

正在计数而不是求和...

JGS-Memphis 6
Reynosa 17

我想做这样的事情

JGS-Memphis 1030
Reynosa ...

我在这里缺少什么?

I have the flu but this is no excuse. I am going crazy over this (I'm sure the solution is simple). I got this input file

491 Reynosa
639 JGS-Memphis
  5 JGS-Memphis
480 Reynosa
247 JGS-Memphis
556 Reynosa
 71 JGS-Memphis
993 Reynosa
  5 JGS-Memphis
773 Reynosa
 63 JGS-Memphis
589 Reynosa
809 Reynosa
671 Reynosa
397 Reynosa
402 Reynosa
160 Reynosa
612 Reynosa
658 Reynosa
549 Reynosa
691 Reynosa
782 Reynosa
579 Reynosa

I need to do a tally but my code...

    awk -F" " '{counts[$2]=counts[$2]+1}    END     {for (key in counts)         
printf "%s\t%d\n", key, counts[key]}    ' inputfile.txt

is counting instead of summing...

JGS-Memphis 6
Reynosa 17

I want do something like this

JGS-Memphis 1030
Reynosa ...

what am I missing here??

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

动听の歌 2024-12-11 07:12:04
awk -F" " '{counts[$2]=counts[$2]+$1} 
    END {for (key in counts) printf "%s\t%d\n", key, counts[key]}    ' inputfile.txt

你漏掉了一个“$”。

awk -F" " '{counts[$2]=counts[$2]+$1} 
    END {for (key in counts) printf "%s\t%d\n", key, counts[key]}    ' inputfile.txt

You were missing a "$".

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文