用于大文件的 Unix 命令行编辑器

用于大文件的 Unix 命令行编辑器

我有时会遇到这样的问题:我需要替换~10Gb 文件中的几个字符。由于我只有 2Gb RAM,使用Vim或打开这样的文件nano将消耗所有系统资源。

我现在的做法是,要么用 进行修改sed,但不太方便,要么使用head和的组合tail来分割出文件的一小部分,对其进行编辑,然后cat再将各部分重新组合起来。更不方便。

那么,是否有人知道不会将整个文件加载到内存中的编辑器(或者也许是我可以使用的开关vim或另一个流行的编辑器)?

答案1

您可以配置 vim 以更好地处理大文件:

http://www.vim.org/scripts/script.php?script_id=1506

Editing large files can be a time consuming process as Vim is working on 
a number of things behind the scenes, such as maintaining an undo database, 
searching for a syntax highlighting synchronization point, etc.  

LargeFile.vim is a very small "plugin"; mostly, its just an autocmd that 
disables certain features of vim in the interests of speed. 

相关内容