in reply to Re: Speed of Splitin thread Speed of Split
I think you're confusing join with cat
$ cat a 1 a 2 A $ cat b 1 b 2 B $ join a b 1 a b 2 A B [download]
Your code would return:
1 a 2 A 1 b 2 B [download]