I am a novice in unix. i am facing a problem in viewing big log files in unix using Vi tool. could you please suggest the best tool for fast viewing of big files on unix. Request you to post your own ways of viewing the big files on unix. appreciate your help:)
|
|
|
||||||||
|
|
|
It depends on what you are looking for in this big log file.
|
||
|
|
|
Actually You just need to be aware that a few operations will be slow on large files: big visual selects, global searching, and syntax highlighting. For large files, always turn off syntax highlighting (if you have it on by default): :syn off . Then you should be fine. |
||
|
|
|
|
Use It is usually included in the repository of any linux distro. |
||||
|
|
|
less and tail are the most efficient for viewing long files. less displayes a portion of file at a time and you need to scroll it in up direction whereas tail facilitates you to view the last n number of lines. |
||
|
|
