比较两个txt文件并在txt文件中逐行打印差异

发布于 2024-12-28 13:47:40 字数 104 浏览 0 评论 0原文

我有两个制表符分隔的 .txt 文件,我想将它们相互比较。最终目标是在另一个 .txt 文件中打印差异,该文件仅包含列中出现不同数据的行。是否可以使用 Winodws 中的一些脚本来做到这一点?

I have two tab-delimited .txt files, and I want to compare them to each other. The end goal is to print the difference in a another .txt file, which will have only the lines where the different data in column occurs. Is it possible to do this with some script in Winodws?

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

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

发布评论

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

评论(2

泅人 2025-01-04 13:47:40

无需为此手动编写脚本,尽管在 Python 等中相对容易完成。您可以安装 DiffUtils for Windows 来获取 Linux 风格的 diff 工具。然后你可以(在 shell 中)说:

diff file1.txt file2.txt

There is no need to write a script for this manually, although it would be relatively easy to do in e.g. Python. You can install DiffUtils for Windows to get Linux style diff tools. You can then say (in a shell):

diff file1.txt file2.txt
风渺 2025-01-04 13:47:40

WinMerge 可能适合您。如果您希望实现自动化,它有一个命令行界面。您可以在 http://manual.winmerge.org/Command_line.html 查看手册。希望这有帮助!

WinMerge could possibly work for you. It has a command line interface, if you're looking to automate it. You can check the manual at http://manual.winmerge.org/Command_line.html. Hope this helps!

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