228k views
2 votes
How can we display outputs of DIR one screenful at a time? There are at least two different ways, and either one is acceptable.

1 Answer

2 votes

Answer:

DIR has a /p option to paginate any output.

dir /p

Will give you one screen length at a time.

I believe you can use that simultaneously with /w if you want to fit more file names on the screen, at the loss of additional data like file size, type, etc.

User Mava
by
6.3k points