I need to combine contents of 2 text files, word by word.
The script takes every word from file 1 and combines with file 2. it adds all the combined words in file 3.
Example:
File1 File2 WordA1 WordB1 WordA2 WordB2 WordA3 WordB3
Output: WordA1 WordB1 WordA2 WordB2 WordA3 WordB3
How can I accomplish this? Is this possible with the cat command?