在慢速计算机上分割非常大的文件?
我有几个 xml 文件。它们很大,而我的电脑速度很慢。我无法在记事本中打开它们。在 Windows 中将这些文件分成相等的部分(仍为 xml 格式)的最快、最简单的方法是什么?
I have several xml files. They're very big, and my computer is quite slow. I can't open them in notepad. What is the fastest, easiest way to divide these files into equal parts, still in xml format, in Windows?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
MSYS
for Windows然后您就可以使用
sed
命令将文件块传输到另一个临时文件中。sed -n [开始],[结束]p 文件名 > tmp.xml
其中,
[start]
是起始行号,[end]
是结束行号。当然,您必须重复运行此命令。而且,您需要知道将文件分成相等部分的总行数。MSYS
for WindowsYou can then use the
sed
command to pipe chunks of your file into another temp file.sed -n [start],[end]p filename > tmp.xml
where,
[start]
is the starting line number, and,[end]
is the ending line number. Of course, you'll have to run this command repeatedly. And, you'll need to know the total number of lines to divide the file into equal parts.