Become a MacRumors Supporter for $50/year with no ads, ability to filter front page stories, and private forums.
I'm not sure what that means. I've opened some large files in TextWrangler, but maybe not quite that large.
 
I'd recommend splitting the file into smaller ones. Using terminal you can use the split command.

Code:
split -l 100000 largeFile.log split_
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.
 
I'd recommend splitting the file into smaller ones. Using terminal you can use the split command.

Code:
split -l 100000 largeFile.log split_
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.

Great idea, I never knew of that command.
 
Register on MacRumors! This sidebar will go away, and you'll see fewer ads.