So as to vizualize, and hopefully edit, a very large text file, more than 10GBytes (a backup dump of whole database), I have tried using vim... it didn't behave very well.
I have also tried cat to at least visualize, and cat didn't not behave properly neither.
Are there tools for huge file editing ? Something that would view/edit by a limited group of lines without trying to load the rest, unless told to load a new group (really limited) of lines, and maybe the possibility to jump certain places thanks to a search utility.
less
might be an option. Also see http://unix.stackexchange.com/a/66298/12779 – Marco Mar 24 '13 at 01:54less
is a terrible idea, it will load the whole file into memory to be able to move around. – vonbrand Mar 24 '13 at 02:04hadoop
by dividing the work up, but you might have to roll your own software. – Emre Mar 19 '14 at 20:45