Batch file help?

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