简单的差异问题
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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
如果您不需要保留各个文件中的顺序:
If you don't need to preserve the order within the individual files: