How can I print the content of a textfile on the command prompt in Windows?

In Linux I can do this with less textfile.txt, more textfile.txt or cat textfile.txt

What is the command for this in Windows?

link|improve this question

feedback

1 Answer

up vote 7 down vote accepted

type textfile.txt If you want it page-by-page, more textfile.txt.

link|improve this answer
3  
Or just more textfile.txt ... avoids a useless use of type – Joey Jul 13 '10 at 1:06
@Joey: Point taken. – Hello71 Jul 20 '11 at 19:43
That was one hell of a lag ;) – Joey Jul 20 '11 at 21:15
@Joey: Just a year or so. About 31,536,000,000 ms latency. – Hello71 Jul 20 '11 at 21:32
feedback

Your Answer

 
or
required, but never shown

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