I have a large number of text files (2000) each of 1 mb. What I am looking to do is join them in the easiest way possible, however, contrary to the already posted methods, I don't want to append one to the bottom of the previous one, I want to append it to the right (new column, tab) of the previous one.
For example, if there are 2 text files: 1 containing a a
and other containing b
:
I want
a b
instead of
a
b
Thanks!