Concatenate Files .TXT

0

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.

    
asked by Rodrigo Hackz Exploitz 22.10.2016 в 04:16
source

1 answer

-1

If you use Linux, it's the next command in the console

cat file1.txt file2.txt > new.txt

in windows in the console the following applies:

copy /b file1+file2+file3 targetfile

Greetings.

    
answered by 22.10.2016 в 05:35