I’m stuck with this :
I need to merge two text files in a single tab delimited text file, on a batch script.
ex :
file1:
qwer
tyui
asdf
file2:
1345
6876
8796
file3:
qwer 1345
tyui 6876
asdf 8796
All I need in fact, is a equivalent to Unix command : paste -d "\t" file1 file2 > file3
1 Answer