Batch file help?

Soldato
Joined
27 Sep 2004
Posts
11,200
Location
The Ledge Beyond The Edge
ok basically i need to know if there is a command to copy the contents of 1 text file into another at the end of it.
So basically i need to copy whats inside one.txt into two.txt
any ideas??

Cheers
 
if '1.txt' contained 'world' and '2.txt' contained 'hello ', then 'type 1.txt >> 2.txt' would make '2.txt' become 'hello world'.
> is overwrite redirection
>> is append redirection
 
Back
Top Bottom