Determining line count in an ASCII file
I want to dump the contents of an ASCII file into vectors. A page length is 66 lines, but the number of pages in the file is unknown.
Ideally, I'd like to be able to determine the number of lines in the file and then break it down into 66-line increments. Each increment would be in its own vector.
Any help would be appreciated.

