Merge command on windows

Hi all,

How to join spitted files into a single file on windows as we have a CAT command on unix.

Regards,

---------- Post updated 02-10-12 at 12:54 AM ---------- Previous update was 02-09-12 at 12:56 AM ----------

I think my question is unclear.

Let me explain it again.

I want to combine number of files into a single file on windows xp .
Please tell me the command on windows

FYI
The files were splitted into number of files on solaris machine.

Thanks

 
type *.txt > output.txt

This is one rare case where the command in UNIX and CMD is actually the same, because CMD has cat too.

cat *.txt > output

Thank you both for providing the commands.I used type command and it worked for me.