I have a text file (A.txt) with this these lines:
Aaaaaaa1
Aaaaaaa2
Aaaaaaa3
And other text file (B.txt) with this these lines:
Bbbbbbb1
Bbbbbbb2
Bbbbbbb3
I would like to combine A.txt and B.txt in other file (OUTCOME.txt) in this way:
Aaaaaaa1
Bbbbbbb1
Aaaaaaa2
Bbbbbbb2
Aaaaaaa3
Bbbbbbb3
How could I make this using bash shell in linux using read, grep, echo, etc?