简单的差异问题

发布于 2024-12-02 14:43:28 字数 379 浏览 0 评论 0原文

file1.txt is

  • 10
  • 20
  • 30
  • 40
  • 50

file2.txt is

  • 10
  • 20
  • 40
  • 60
  • 70
  • 80

我希望output.txt是这两个文件中数字的并集,但没有重复项。 Output.txt 应为

  • 10
  • 20
  • 30
  • 40
  • 50
  • 60
  • 70
  • 80

file1.txt is

  • 10
  • 20
  • 30
  • 40
  • 50

file2.txt is

  • 10
  • 20
  • 40
  • 60
  • 70
  • 80

I want output.txt to be a union of numbers in these two files but with no duplicates.
Output.txt should be

  • 10
  • 20
  • 30
  • 40
  • 50
  • 60
  • 70
  • 80

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

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

发布评论

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

评论(1

冰火雁神 2024-12-09 14:43:28

如果您不需要保留各个文件中的顺序:

cat file1.txt file2.txt | sort | uniq > output.txt

If you don't need to preserve the order within the individual files:

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