Possible Duplicate:
How can I print a textfile on the command prompt in Windows?

Like in Unix' cat filename ...
Can this be done?

link|improve this question

feedback

closed as exact duplicate by studiohack Mar 12 '11 at 22:24

This question covers exactly the same ground as earlier questions on this topic; its answers may be merged with another identical question. See the FAQ for guidance on how to improve it.

3 Answers

up vote 2 down vote accepted

You can do this with type filename :)

link|improve this answer
feedback

In your command prompt, use the "type" command. You can also pipe it through "more" like in Unix.

  • type filename

...or...

  • type filename | more
link|improve this answer
Additionally, you can use other redirection operators that are the same as Unix in that you can store output into a file instead of onto the screen (e.g., type filename > filename.out) or take input from a file (e.g., more < filename). It is important to note that the more advanced uses of these redirection operators that will work in Unix don't always work as expected (if at all) in DOS/Windows environments, but if you keep things simple (and test them) they should always work well for you. – Randolf Richardson Mar 12 '11 at 13:10
feedback

You can cat multiple files like this:

type file1 file2 file3 2>nul

The 2>nul suppresses the output of the filenames. If a file doesn't end with a carriage return, one will not be added between files.

You can do the same thing like this:

copy file1 + file2 + file3 con >nul

In this case the >nul suppresses output of the file names and the n file(s) copied message.

link|improve this answer
feedback

Not the answer you're looking for? Browse other questions tagged or ask your own question.