in reply to Multiple Extraction from Multiple Files
You don't have to slurp in the first file all at once. You could do 40 passes, first doing all the entries of file1, then of file2, etc. Instead of 40 passes, you could also first sort the file. Or do a single pass, writing out the records to 40 different files, which you then process in order.
Whether you need to read in the other files, then depends on how they are structured.
|
|---|