如何通过CMD从大型txt文档中获取最后450行?

发布于 2025-01-04 13:57:38 字数 80 浏览 1 评论 0原文

我正在寻找解决方案,如何使用 BATCH 文件从大型 txt 文档中获取最后 450 行。

有什么建议吗?

谢谢!

I'm looking for solution, how to get last 450 lines from large txt document using BATCH files.

Any suggestions?

Thanks!

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

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

发布评论

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

评论(2

表情可笑 2025-01-11 13:57:38

您可以从 GnuWin32(包 TextUtils)获取 tail.exe或UnxUtils。

然后:

tail -450 file

You can get tail.exe from GnuWin32 (package TextUtils) or UnxUtils.

Then:

tail -450 file
狼性发作 2025-01-11 13:57:38

使用本机脚本的混合批处理文件 findrepl.bat(由 aacini 提供)在处理大型文件时非常强大且快速。

findrepl /o:-450 <file.txt >newfile.txt

这使用了一个名为 findrepl.bat 的辅助批处理文件(由 aacini 提供) - 从以下位置下载:https://www.dropbox.com/s/rfdldmcb6vwi9xc/findrepl.bat

地点findrepl.bat 与批处理文件位于同一文件夹或路径上。

The hybrid batch file findrepl.bat (by aacini) that uses native scripting is robust and quick on large files.

findrepl /o:-450 <file.txt >newfile.txt

This uses a helper batch file called findrepl.bat (by aacini) - download from: https://www.dropbox.com/s/rfdldmcb6vwi9xc/findrepl.bat

Place findrepl.bat in the same folder as the batch file or on the path.

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