如何通过CMD从大型txt文档中获取最后450行?
我正在寻找解决方案,如何使用 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您可以从 GnuWin32(包 TextUtils)获取
tail.exe
或UnxUtils。然后:
You can get
tail.exe
from GnuWin32 (package TextUtils) or UnxUtils.Then:
使用本机脚本的混合批处理文件
findrepl.bat
(由 aacini 提供)在处理大型文件时非常强大且快速。这使用了一个名为
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.This uses a helper batch file called
findrepl.bat
(by aacini) - download from: https://www.dropbox.com/s/rfdldmcb6vwi9xc/findrepl.batPlace
findrepl.bat
in the same folder as the batch file or on the path.