I have two files with the same number of words and column fields in each line. I want to append these two files word by word. For example:
File 1:
A1 B1 C1
D1 E1 B1 C1
File 2:
A2 B2 C2
D2 E2 B2 C2
The output should be (the number of words should be respected):
A1_A2 B1_B2 C1_C2
D1_D2 E1_E2 B1_B2 C1_C2