in reply to join on 6 huge files
If that's accurate (don't need to sort or worry about unmatched keys), then something like this would be the first thing I would try -- the unix paste and cut commands:
That should be pretty close to optimal in terms of performance.paste file1 file2 file3 file4 file5 file6 | cut -f2,4,6,8,10,12 > hex. +cols
|
|---|