Quote:
Originally Posted by
Corona688
I do not think you can expect to edit a 70-megabyte file in vi.
In principle this is possible. Make sure you have enough room in the filesystem where
vi writes its temporary files, because the first thing
vi when opening a file does is to create a temporary working copy. Usually this directory is
/var/tmp, but it can be configured to be elsewhere.
Furthermore you need to have enough (free) memory available to accomodate such a large process. This means not only to have it but also to be allowed to use it (check with
uname -a).
Quote:
Originally Posted by
Corona688
If you just want to view it, try less filename
On AIX you should rather use
more, especially as the AIX
more can search, scroll forwards/backwards and do all sorts of useful things most people turn to
less for. You could also use
view, which is practically a
vi in read-only mode.
I hope this helps.
bakunin