I have 2 .txt files and I need to concatenate the rows, I explain:
File: 1.txt
code1 = (is in row 1 of .txt)
code2 = (is in row 2 of .txt)
code3 = (is in row 3 of .txt)
File: 2.txt
111 (is in row 1 of .txt)
222 (is in row 2 of .txt)
333 (is in row 3 of .txt)
The result should look like this:
File 3.txt
code1 = 111
code2 = 222
code3 = 333
Remark: This is just a very basic example, since images that are files with approx. 2000 lines or more where are phrases (not just numbers).
I was trying to use the notepad ++, but it takes a lot of time to complete this process.