I have 3 text files containing 10 lines each:
Text1:
01-TextA
02-TextA
03-TextA
04-TextA
05-TextA
06-TextA
07-TextA
08-TextA
09-TextA
10-TextA
Text2:
01-TextB
02-TextB
03-TextB
04-TextB
05-TextB
06-TextB
07-TextB
08-TextB
09-TextB
10-TextB
Text3:
01-TextC
02-TextC
03-TextC
04-TextC
05-TextC
06-TextC
07-TextC
08-TextC
09-TextC
10-TextC
how can I assemble Line 1 of text1 + Line 1 of text2 + Line 1 of text3, etc.. inside a new text file? it should look like that:
01-TextA
01-TextB
01-TextC
02-TextA
02-TextB
02-TextC
03-TextA
03-TextB
03-TextC
04-TextA
04-TextB
04-TextC
05-TextA
05-TextB
05-TextC