I have search any reference regarding my plan to copy every 2 line and them paste it into new file. I found some good reference but it for copy every line not every 2 line you can check here Batch File To Copy Every Line In .txt File And Then Create New .txt File For Each Line
Can i copy every 2 line from .txt file and paste it to another automatic generated .txt file that contain my 2 line from .txt source?
Some example source.txt like this:
mango
orange
apple
grape
pear
banana
papaya
etc.
i want to split it into every 2 line in new .txt file, result like this:
filename new.txt contain:
mango
orange
filename new2.txt contain:
apple
grape
filename new3.txt contain:
pear
banana
any someone to know the answer?