What is the Windows command-line command that is equivalent of Unix More? I want to view some flat files under Windows' CMD prompt.

link|improve this question
Wow! I didn't think there were still MS-DOS users out there... – a_horse_with_no_name Aug 25 '10 at 22:05
4  
That's not MS-DOS. – Hello71 Aug 26 '10 at 2:32
feedback

migrated from stackoverflow.com Aug 26 '10 at 2:31

This question came from our site for professional and enthusiast programmers.

3 Answers

up vote 4 down vote accepted

It's been a while, but I think I used to do type foo.txt | more

link|improve this answer
2  
If you are using cmd.exe try typing "more /?" for options ... you can include filenames there too – belisarius Aug 25 '10 at 22:02
If you do that, the system will make a copy (and you are probably using floppy disks, so it will cost you if it works at all). Use more < foo.txt – Randolf Richardson Aug 25 '10 at 22:09
@user26312: Since when? – Hello71 Aug 26 '10 at 2:53
2  
@user26312: Since the question is not about MS-DOS but in fact Windows' cmd prompt, the file is not likely on a floppy disk. – Torben Gundtofte-Bruun Aug 26 '10 at 6:45
feedback

Even better: more < foo.txt

link|improve this answer
1  
Even better: more foo.txt – Dennis Williamson Aug 29 '10 at 23:57
feedback

Less is available for Windows CMD.EXE (as well as Linux, FreeBSD, OS X, actual MS-DOS and others). It's much better than the default more.

For example more won't let you move back toward the beginning of a file; less will. (Some Linux and other versions of more have this and other features, though.)

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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