需要总结ata但只能算数
我得了流感,但这不是借口。我对此感到疯狂(我确信解决方案很简单)。我得到这个输入文件,
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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
你漏掉了一个“$”。
You were missing a "$".