在慢速计算机上分割非常大的文件?

发布于 2024-12-26 21:02:59 字数 95 浏览 1 评论 0原文

我有几个 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 技术交流群。

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

发布评论

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

评论(1

咽泪装欢 2025-01-02 21:02:59
  1. 安装MSYS for Windows
  2. 然后您就可以使用sed 命令将文件块传输到另一个临时文件中。

    sed -n [开始],[结束]p 文件名 > tmp.xml

其中,[start] 是起始行号,[end] 是结束行号。当然,您必须重复运行此命令。而且,您需要知道将文件分成相等部分的总行数。

  1. Install MSYS for Windows
  2. You 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.

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