Text editor to open big (giant, huge, large) text files
E.g. Notepad++ complains that the file is too big.
Text editor to open big (giant, huge, large) text files
E.g. Notepad++ complains that the file is too big.
You'd better to Use grep or sed to extract lines of your interest first.
If you want to extract 10 adjacent lines of the line which contains "Joachim", following command may work. You may see 11 liens of text, 5 lines before the line of Joachim, the line of Joachime and 5 lines after the line of Joachim on the console.
grep -5 -n Joachim filename_of_your_gigabyte_data
If you want to read by editor instead of console message, save them in a file as follows.
grep -5 -n Joachim filename_of_your_gigabyte_data > output_file_name
Then use your favorite editor to open file.
Read_every_data type applications is not suitable to handle Gigabyte data in the purpose of reading a part only.