in reply to Iterating through HUGE FILES
Well, are there newlines in the file? (or to be correct: is the value of the input record seperator somewhere in the file?)
If there aren't then that's your problem. What can you do then is either set the input record seperator ($/) to another charachter, or set it to an integer-reference, then X bytes will be read. (for example $/=\123; now <OUT> will read 123 bytes each time)
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^2: Iterating through HUGE FILES
by northwind (Hermit) on May 10, 2005 at 17:53 UTC |