The "More" Command

Discussion forum for all Windows batch related topics.

Moderator: DosItHelp

Post Reply
Message
Author
alleypuppy
Posts: 82
Joined: 24 Apr 2011 19:20

The "More" Command

#1 Post by alleypuppy » 02 Jul 2011 09:08

Hi all,

I have a batch program that calls another batch program when a specific string is typed. In the called batch program, there is a lot of text. I tried using the "More" command to make it pause after each screenful of information, but all it does is type the raw text of the file, pause after each screenful of raw text, and then execute the batch program without pausing. How can I fix this?

Cleptography
Posts: 287
Joined: 16 Mar 2011 19:17
Location: scriptingpros.com
Contact:

Re: The "More" Command

#2 Post by Cleptography » 02 Jul 2011 09:41

try piping pause instead.

Code: Select all

pause | for /?

Post Reply