Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有几个 xml 文件。它们很大,我的电脑很慢。我无法在记事本中打开它们。在 Windows 中将这些文件分成相等的部分(仍为 xml 格式)的最快、最简单的方法是什么?
MSYS
然后,您可以使用该sed命令将文件块通过管道传输到另一个临时文件中。
sed
sed -n [start],[end]p filename > tmp.xml
其中,[start]是起始行号,[end]是结束行号。当然,您必须重复运行此命令。而且,您需要知道将文件分成相等部分的总行数。
[start]
[end]