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.
我有一个 ~100GB 的 .txt 文件。有没有可以用来打开它的文本编辑器?如果是这样,这将如何实际存储在内存中?我只有 16GB 的内存。
我还在探索其他选项,例如将文件拆分为 2 个或更多部分。关于如何在 linux 的命令行上有效地执行此操作的任何建议?
谢谢
如果使用命令行,请查看实用程序 HEAD 和 TAIL。我经常会使用
tail -<number of lines> | more
要拆分文件,请查看 SPLIT。