I have an access log that I need to read and it is 3GB in size. Any application that can read that? Maybe Hex Edit.
I'm pretty sure TextWrangler could handle it, and it's free.
split -l 100000 largeFile.log split_
I'd recommend splitting the file into smaller ones. Using terminal you can use the split command.
This will split the file into files of 100K lines per file. I haven't tried it out though. The last piece is the prefix for the split-named files e.g., split_001.Code:split -l 100000 largeFile.log split_
No, TextWrangler maxes out at 384 MB.I'm pretty sure TextWrangler could handle it, and it's free.