is anyone out here have some clue on possible application across any OS to open huge text files sizing around 30 Gbs. I have tried, notepad, notepad ++, utra edit, on windows geedit and nano on Linux no luck so far
(April 24, 2022, 10:31 AM)rameshsainikuruk69 Wrote: is anyone out here have some clue on possible application across any OS to open huge text files sizing around 30 Gbs. I have tried, notepad, notepad ++, utra edit, on windows geedit and nano on Linux no luck so far
How about you split it into smaller files.
Download Git bash if you don't have it already
Use the split command in Git Bash to split a file:
into files of size 500MB each: split myLargeFile.txt -b 500m
into files with 10000 lines each: split myLargeFile.txt -l 10000