在文本文件中对空间分离的ID进行了不同的处理
输入文件看起来像这样:
123 456
456 869
123 562
562 123
如何找到ID的总量?
到目前为止,我尝试的是:
cat file | tr " " "\n" | sort | uniq -c
哪个给出:
2 123
1 123
1 456
1 456
1 562
1 562
1 869
这将提供7个Uniq ID,但有4:123、456、562和869
Input file looks something like this:
123 456
456 869
123 562
562 123
How do I find the total amount of IDs?
What i've tried so far:
cat file | tr " " "\n" | sort | uniq -c
Which gives:
2 123
1 123
1 456
1 456
1 562
1 562
1 869
Which would give a total of 7 uniq IDs, but there are 4: 123, 456, 562 and 869
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论