I have two files each containing hexadecimal numbers one on each line. The two files have the same number of numbers (hence the same number of lines).
I'd like to combine the two files into one but have the numbers displayed side by side, in two columns. So
file A has:
a1
a2
a3
file B has:
b1
b2
b3
I'd like a file that looks like:
a1 b1
a2 b2
a3 b3
Is there a way do do this? join looks like a candidate, but I've been playing around with it, and I can't get it to work. (Join seems to work on the premise of keys and sorted values.)