1.

Solve : HELP with simple ms dos batch program?

Answer»

I am not to familiar with ms dos so please have patience.
i need to CREATE a BAT file that will combine to DATA files located on my C drive, but i want to be able to take that batch file and modify it to combine other files if needed in the future.

Thanks Quote from: Computer_Rookie on December 20, 2010, 12:06:17 AM

I am not to familiar with ms dos so please have patience.
i need to create a bat file that will combine to data files located on my c drive, but i want to be able to take that batch file and modify it to combine other files if needed in the future.

Thanks

Append  data files to each other? 
Code: [Select]echo data2.txt >> data1.txt  |  sort

echo  data*.txt>> data1.txt  |  sortThanks that HELPED


Discussion

No Comment Found