According to Kevin Lindsey: > > while (<>) { > chop; > processLine(); > } > > Apparently, MacPerl needs as much free memory (plus a little more) as the > size of the file that it is reading in. Is there anyway to avoid this? I'm > only interested in one line at a time. I don't need for the whole file to > be resident in memory. > If you are using the above loop MacPerl would not retain the 200mb of information. Something within "processLine()" is causing your problem. Check to make sure you aren't storing all of the information. :-) ***** Want to unsubscribe from this list? ***** Send mail with body "unsubscribe" to mac-perl-request@iis.ee.ethz.ch